/* affordable-website-design-behror.css — Premium Blog Styling */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #1e3a8a; /* Deeper blue */
  --primary-deep: #0f172a;
  --accent: #ea580c; /* Vibrant Orange */
  --accent-light: #fff7ed;
  --accent-glow: rgba(234, 88, 12, 0.15);
  --text: #1e293b;
  --text-muted: #475569;
  --bg: #f8fafc;
  --card: rgba(255, 255, 255, 0.85);
  --border: rgba(226, 232, 240, 0.8);
  --green: #16a34a;
  --green-light: #f0fdf4;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
  --radius: 20px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, #f1f5f9 0%, #f8fafc 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVIGATION ===== */
.site-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.site-logo .accent { color: var(--accent); }
.site-logo .solution { color: var(--text-muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .btn-contact {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-links .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249,115,22,0.4);
  color: #fff;
}

/* ===== BLOG CONTAINER ===== */
.blog-container { max-width: 840px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO SECTION ===== */
.blog-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}
.category-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
  border: 1px solid rgba(249,115,22,0.2);
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.blog-title .highlight { color: var(--accent); }
.blog-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.author-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.author-meta img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.author-details { text-align: left; }
.author-name { display: block; font-weight: 700; font-family: var(--font-heading); color: var(--primary); }
.post-date { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ===== HERO IMAGE ===== */
.hero-image-wrapper {
  margin-bottom: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 8px;
  border: var(--glass-border);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}
.hero-image-wrapper img { border-radius: calc(var(--radius) - 8px); }

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: var(--card);
  backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px 35px;
  margin: 0 0 60px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}
.toc:hover { box-shadow: var(--shadow-lg); }
.toc-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.toc ol { padding-left: 20px; }
.toc li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.toc a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s;
}
.toc a:hover { color: var(--accent); }

/* ===== BLOG CONTENT ===== */
.blog-content { padding-bottom: 40px; }
.blog-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin: 56px 0 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text);
  margin: 32px 0 14px;
  font-weight: 700;
}
.blog-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.85;
}
.blog-content strong { color: var(--text); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(120deg, var(--accent-light) 0%, rgba(255,255,255,0.7) 100%);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 30px;
  margin: 32px 0;
  font-size: 1.05rem;
  color: #9a3412;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

/* ===== KEYWORD TAGS ===== */
.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.kw-tag {
  background: #eff6ff;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}

/* ===== STAT CARDS ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.stat-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.stat-card:hover::after { opacity: 1; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== FEATURE LIST ===== */
.feature-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-muted);
}
.feature-list li:last-child { border-bottom: none; }
.check {
  width: 22px; height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 700;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #f8fafc; }
.badge-yes {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}
.badge-no {
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* ===== SERVICE GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.service-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  z-index: -1;
}
.service-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(234, 88, 12, 0.1);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== STORY / QUOTE BOX ===== */
.story-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 36px 36px 44px;
  margin: 36px 0;
  position: relative;
  box-shadow: var(--shadow-md);
}
.story-box::before {
  content: '"';
  position: absolute;
  top: 8px; left: 16px;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
}
.story-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}
.story-attr {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
}

/* ===== NUMBERED STEPS ===== */
.steps { margin: 24px 0; }
.step {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.step-num {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-heading);
  box-shadow: 0 4px 8px rgba(26,60,110,0.2);
}
.step-content h3 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
}
.step-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== INLINE IMAGE ===== */
.article-image {
  margin: 36px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 5px;
  max-width: 440px;
}
.article-image img { border-radius: 12px; }
.article-image figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
  padding-bottom: 4px;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: var(--font-heading);
}
.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ===== PREMIUM CTA BANNER ===== */
.premium-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 50px;
  border-radius: calc(var(--radius) + 8px);
  text-align: center;
  margin: 70px 0 50px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.premium-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  pointer-events: none;
}
.premium-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(249,115,22,0.08);
  pointer-events: none;
}
.premium-cta h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 2.2rem;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.premium-cta p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin: 0 auto 28px;
  max-width: 520px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  margin: 6px;
}
.btn-cta.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(249,115,22,0.3);
}
.btn-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(249,115,22,0.4);
  color: #fff;
}
.btn-cta.outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: #e2e8f0;
}
.btn-cta.outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* ===== SEO KEYWORDS FOOTER SECTION ===== */
.seo-keywords-box {
  margin-top: 40px;
  padding: 24px 30px;
  background: var(--card);
  backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.seo-keywords-box .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-deep);
  color: #f1f2f6;
  padding: 80px 0 30px;
  margin-top: 40px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}
.footer h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer p, .footer a { color: #94a3b8; font-size: 0.95rem; }
.footer a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  font-size: 1.1rem;
  color: #94a3b8;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.seo-keywords-list { list-style: none; padding: 0; }
.seo-keywords-list li { margin-bottom: 8px; }
.seo-keywords-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.seo-keywords-list a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.keyword-links {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.keyword-links p {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}
.keyword-links a {
  color: #94a3b8;
  margin: 0 10px;
  font-size: 0.85rem;
  display: inline-block;
  padding: 3px 0;
  transition: color 0.3s;
}
.keyword-links a:hover { color: var(--accent); text-decoration: underline; }

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: #64748b;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  width: 60px; height: 60px;
  bottom: 32px; right: 32px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(37,211,102,0.3);
  z-index: 200;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.scroll-reveal[data-delay="100"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="200"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="300"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="400"] { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .blog-title { font-size: 2rem; }
  .blog-hero { padding: 48px 0 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a.hide-mobile { display: none; }
  .premium-cta { padding: 40px 24px; margin: 36px 0; }
  .premium-cta h3 { font-size: 1.6rem; }
  .btn-cta { display: flex; justify-content: center; width: 100%; margin: 6px 0; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; font-size: 26px; }
  .toc { padding: 20px 22px; }
  .highlight-box { padding: 18px 20px; }
  .steps .step { gap: 14px; }
  .step-num { width: 32px; height: 32px; font-size: 0.8rem; }
  .footer-container { text-align: center; }
  .social-icons { justify-content: center; }
}

@media (max-width: 480px) {
  .blog-title { font-size: 1.7rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .blog-container { padding: 0 16px; }
}
