/*
Theme Name: svgtoany Theme
Theme URI: https://svgtoany.com
Author: Ahmad Marafa
Description: Custom theme for svgtoany.com with React tool integration.
Version: 1.0.0
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-color: #ffffff;
  --main-content: #F8FAFC;
  --surface-color: #FFFFFF;
  --primary-color: #4F46E5;
  /* Indigo 600 */
  --primary-hover: #4338CA;
  /* Indigo 700 */
  --primary-soft: #EEF2FF;
  /* Indigo 50 */
  --text-main: #0F172A;
  /* Slate 900 */
  --text-muted: #64748B;
  /* Slate 500 */
  --border-color: #E2E8F0;
  /* Slate 200 */
  --danger-color: #EF4444;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

button {
  font-family: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
  background-color: #94A3B8;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: #CBD5E1;
  background-color: #F8FAFC;
  transform: translateY(-1px);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Card Component */
.card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
  border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}


* {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  box-sizing: border-box;

}

/* --- Extracted Styles --- */

/* Header & Navigation (Shared) */
.header {
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  width: auto;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.seperator {
  color: #F1F5F9;
}

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

.nav-link:hover {
  color: var(--text-main);
}

/* Page Layout (Shared) */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

/* Forms (Shared) */
.form-group {
  margin-bottom: 1.25rem;
}

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

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
  background: white;
  /* Ensure background is explicit */
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-soft);
}



/* Home Page Specific */
.hero-section {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.svg-converter-widget-container {
  background: initial !important;
}

.highlight-text {
  background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tooltip Styles */
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: help;
  /* Keep text content normal */
  background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tooltip-text {
  visibility: hidden;
  width: 80px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;

  /* Position the tooltip */
  position: absolute;
  z-index: 100;
  bottom: 110%;
  left: 50%;
  margin-left: -40px;

  /* Reset text fill color for the tooltip itself */
  -webkit-text-fill-color: #fff;

  /* Fade in */
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  font-size: 17px
}

/* Arrow */
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}



/* SEO Converter Page */
.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.content-body h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.content-body p,
.content-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-body ul,
.content-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}



/* Footer */
.footer-dark {
  background: #0F172A;
  /* Slate 900 */
  color: #94A3B8;
  /* Slate 400 */
  padding: 5rem 0 2rem;
  margin: 10px;
  border-radius: 5px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
}

.social-icon:hover {
  background: var(--primary-color);
}

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

.nav-col h5 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-col a {
  display: block;
  color: #94A3B8;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}


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

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

/* Made With Animation */
.made-with {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
  font-size: 0.95rem;
}

.heart {
  color: #F43F5E;
  display: inline-block;
  animation: heartBeat 1.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.5);
}

.coffee {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.made-with:hover .coffee {
  transform: translateY(-2px) rotate(10deg);
}

.sparkles {
  display: inline-block;
  animation: shine 2s linear infinite;
}

@keyframes heartBeat {

  0%,
  100% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.15);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.15);
  }

  60% {
    transform: scale(1);
  }
}

@keyframes shine {

  0%,
  100% {
    filter: brightness(100%) hue-rotate(0deg);
    transform: scale(1);
  }

  50% {
    filter: brightness(130%) hue-rotate(45deg);
    transform: scale(1.1);
    text-shadow: 0 0 5px #FCD34D;
  }
}

/* Content Section */
.content-wrapper {
  padding: 5rem 0;
  background: white;
  border-top: 1px solid var(--border-color);
}

.features-grid,
.format-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  padding: 1rem;
  border-radius: 20px;
  background: #F8FAFC;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: white;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--border-color);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}


.bg-blue {
  background: #3B82F6;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.bg-green {
  background: #10B981;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.bg-purple {
  background: #8B5CF6;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 4rem 0;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #EEF2FF;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-main);
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step-item {
  text-align: center;
  max-width: 200px;
}

.step-num {
  font-size: 4rem;
  font-weight: 800;
  color: #F1F5F9;
  line-height: 1;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 0;
}

.step-item h4 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-arrow {
  font-size: 2rem;
  color: #CBD5E1;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-box {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.faq-box summary {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-box summary::-webkit-details-marker {
  display: none;
}

.faq-box p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.arrow {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  display: inline-block;
}

.arrow::after {
  content: "+";
}

.faq-box[open] .arrow::after {
  content: "-";
}

@media (max-width: 768px) {
  .step-arrow {
    display: none;
  }
}

/* Privacy & Terms Policy Content */
.policy-content {
  max-width: 800px;
  color: var(--text-main);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* App specific styles */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
}

.main-content {
  flex: 1;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--main-content);
}

.header {
  padding: 1.25rem 0;
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.logo-icon-bg {
  background: var(--primary-color);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Format Grid */
/* .format-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .format-grid {
    grid-template-columns: 1fr;
  }
} */
.format-card {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  cursor: default;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glow);
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent);
}


.format-card:nth-child(1) {
  --accent: rgba(59, 130, 246, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(59, 130, 246, 0.12);
  --tag-color: #60a5fa;
}

.format-card:nth-child(2) {
  --accent: rgba(245, 158, 11, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(245, 158, 11, 0.12);
  --tag-color: #fbbf24;
}

.format-card:nth-child(3) {
  --accent: rgba(16, 185, 129, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(16, 185, 129, 0.12);
  --tag-color: #34d399;
}

.format-card:nth-child(4) {
  --accent: rgba(239, 68, 68, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(239, 68, 68, 0.12);
  --tag-color: #f87171;
}

.format-card:nth-child(5) {
  --accent: rgba(99, 102, 241, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(99, 102, 241, 0.12);
  --tag-color: #818cf8;
}

.format-card:nth-child(6) {
  --accent: rgba(52, 211, 153, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(52, 211, 153, 0.12);
  --tag-color: #34d399;
}

.format-card:nth-child(7) {
  --accent: rgba(168, 85, 247, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(168, 85, 247, 0.12);
  --tag-color: #c084fc;
}

.format-card:nth-child(8) {
  --accent: rgba(236, 72, 153, 0.5);
  --glow: radial-gradient(ellipse at top left, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  --tag-bg: rgba(236, 72, 153, 0.12);
  --tag-color: #f472b6;
}

.format-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.format-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tag-color);
  background: var(--tag-bg);
  padding: 3px 8px;
  border-radius: 50px;
}

.format-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.format-desc {
  font-size: 0.83rem;
  color: #2c2c2c;
  line-height: 1.6;
}

.format-desc strong {
  color: #141414;
  font-weight: bold;
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-top: 2rem;
  background: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: #F8FAFC;
  color: var(--text-main);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

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

.check-icon {
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.cross-icon {
  color: #EF4444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* Persona Grid */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.persona-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #F1F5F9;
  border-left: 4px solid var(--primary-color);
}

.persona-role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.persona-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.persona-detail {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SeoContent.css */
.seo-wrapper {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.seo-section {
  margin-bottom: 3rem;
}

.seo-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color) 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.seo-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-subheading {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.seo-text {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.seo-list {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-list li,
.seo-list-disc li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.seo-list strong,
.seo-list-disc strong {
  color: var(--text-main);
  font-weight: 600;
}

.seo-faq-grid {
  display: grid;
  gap: 1.5rem;
}

.seo-faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.seo-faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #CBD5E1;
}

.seo-faq-question {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.seo-faq-answer {
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-container {
  padding: 4rem 1rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
  background-color: white;
}

.form-control:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.form-control:focus {
  outline: none;
  border-color: #007bff;
}

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

.char-count {
  color: #6c757d;
  font-size: 0.875rem;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  color: white;
  background-color: #007bff;
  cursor: pointer;
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.submit-btn:hover:not(:disabled) {
  background-color: #0056b3;
}

/* --- Single Post Hero Styles --- */
.single-hero {
  color: #1e293b;
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  margin-bottom: 3rem;
  overflow: hidden;
}

.single-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(88, 28, 135, 0.6));
  z-index: 1;
}

.single-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title-text {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  margin: 1.5rem 0;
}

.centered-meta {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.centered-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.single-hero-content .categories a {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.single-hero-content .categories a:hover {
  background: white;
  color: var(--primary-color);
}

.single-content-wrapper {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
  /* Slate 700 */
}

.single-content-wrapper h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem 0;
  color: #1e293b;
}

.single-content-wrapper p {
  margin-bottom: 1.5rem;
}

/* Post Navigation */
.post-navigation {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.nav-link-wrap {
  flex: 1;
}

.nav-previous,
.nav-next {
  width: 50%;
}

.nav-previous {
  text-align: left;
}

.nav-next {
  text-align: right;
}

.nav-subtitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-title {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.entry-content code {

  background-color: var(--main-content);
  padding: 10px;
  border-radius: 5px;
}

.post-navigation a {
  text-decoration: none;
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.post-navigation a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.post-navigation a:hover .nav-title {
  color: var(--primary-color);
}


/* Latest Posts Section Styles */
.post-thumbnail {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  background-color: #e2e8f0;
  margin-right: 20px;

}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .post-thumbnail img {
  transform: scale(1.05);
}



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


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

.post-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.post-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.post-link:hover {
  color: var(--primary-color);
}

.post-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.post-read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.95rem;
}

.post-read-more:hover {
  gap: 0.75rem;
  text-decoration: underline;
}

/* Blog Page Styles */
.blog-filters {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 250px;
}

.search-group {
  position: relative;
  max-width: 400px;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

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

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.pagination-wrapper .page-numbers {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination-wrapper .page-numbers.dots {
  border: none;
  background: transparent;
  color: var(--text-muted);
}

.pagination-wrapper .page-numbers.dots:hover {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}