/* =============================================
   MOHAMMED FOREKAN — MAIN STYLESHEET
   Palette: Deep Navy + Warm Amber + Off-White
   Fonts: Playfair Display + DM Sans
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #0e1b2e;
  --navy-mid: #162540;
  --navy-light: #1e3355;
  --amber: #d4a847;
  --amber-light: #e8c06a;
  --amber-dark: #b8912e;
  --cream: #f8f4ee;
  --cream-dark: #ede8e0;
  --white: #ffffff;
  --text-dark: #0e1b2e;
  --text-body: #3a4a5c;
  --text-muted: #6b7c93;
  --text-light: #d4dae3;
  --border: rgba(14,27,46,0.1);
  --border-light: rgba(255,255,255,0.12);
  --wp-color: #3b87c4;
  --seo-color: #27a96e;
  --res-color: #c45d3b;
  --shadow-sm: 0 2px 12px rgba(14,27,46,0.07);
  --shadow-md: 0 8px 32px rgba(14,27,46,0.12);
  --shadow-lg: 0 20px 60px rgba(14,27,46,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --container: 1200px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

em { font-style: italic; color: var(--amber-dark); }

p { color: var(--text-body); }

.lead-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 400;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

.bg-dark { background: var(--navy); }
.bg-light { background: var(--cream); }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-title,
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: var(--amber-light); border-color: rgba(212,168,71,0.3); }

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  border: 1px solid rgba(180,130,30,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }

.section-desc {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,71,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(14,27,46,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}
.logo-text strong { font-weight: 600; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,71,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,71,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,51,85,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(212,168,71,0.12);
  color: var(--amber-light);
  border: 1px solid rgba(212,168,71,0.25);
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-title em { color: var(--amber); font-style: italic; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(212,168,71,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212,168,71,0.07) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--amber-light); border-color: rgba(212,168,71,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; }
.page-hero h1 em { color: var(--amber); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 580px; font-size: 1.05rem; }

/* ---- EXPERTISE SECTION ---- */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.expertise-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.expertise-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.expertise-card.featured {
  background: var(--navy);
  border-color: var(--amber);
}
.expertise-card.featured h3 { color: var(--white); }
.expertise-card.featured p { color: rgba(255,255,255,0.65); }
.expertise-card.featured .exp-link { color: var(--amber); }

.exp-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--amber);
}
.exp-icon svg { width: 100%; height: 100%; }

.expertise-card h3 { margin-bottom: 14px; }
.expertise-card p { font-size: 0.95rem; margin-bottom: 24px; }
.exp-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber-dark);
  transition: var(--transition);
}
.exp-link:hover { letter-spacing: 0.02em; }

/* ---- FEATURED SERVICES (dark) ---- */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover .service-arrow { transform: translateX(6px); color: var(--amber); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(212,168,71,0.25);
  min-width: 52px;
}
.service-info { flex: 1; }
.service-info h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.service-info p { color: rgba(255,255,255,0.55); font-size: 0.92rem; }
.service-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

/* ---- WHY ME ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-title { margin-bottom: 20px; }
.why-text .lead-text { margin-bottom: 28px; }
.why-list { margin-bottom: 36px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.check {
  color: var(--amber-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* SKILL BARS */
.why-visual { position: relative; }
.skill-bars { display: flex; flex-direction: column; gap: 24px; }
.skill-bar { }
.skill-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.bar-track {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--amber-dark), var(--amber));
  border-radius: 100px;
  animation: barGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { width: 0; }
  to { width: var(--pct); }
}
.exp-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.exp-years {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.exp-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card.featured {
  background: var(--navy);
  border-color: var(--amber);
}
.testi-card.featured p { color: rgba(255,255,255,0.8); }
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.5); }
.testi-card.featured .stars { color: var(--amber); }

.stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 16px; }
.testi-card p { font-size: 0.95rem; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; flex-direction: column; }
.testi-author strong { font-size: 0.95rem; color: var(--text-dark); }
.testi-author span { font-size: 0.82rem; color: var(--text-muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(14,27,46,0.7); margin-bottom: 32px; font-size: 1.05rem; }
.cta-inner .btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-inner .btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-email {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  transition: var(--transition);
}
.footer-email:hover { color: var(--amber-light); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links a, .footer-services a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover, .footer-services a:hover { color: var(--amber-light); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ---- SERVICES PAGE ---- */
.services-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 56px;
}
.services-header.light .section-title { color: var(--white); }
.services-header.light .section-tag { color: var(--amber-light); border-color: rgba(212,168,71,0.3); }
.services-header.light .section-desc { color: rgba(255,255,255,0.55); }
.services-header-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  margin-top: 4px;
}
.services-header-icon svg { width: 100%; height: 100%; }
.wp-color { color: var(--wp-color); }
.seo-color { color: var(--seo-color); }
.res-color { color: var(--res-color); }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-cards-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.service-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.service-card.dark-card { background: var(--navy-light); border-color: var(--border-light); }
.service-card.dark-card h3 { color: var(--white); }
.service-card.dark-card p { color: rgba(255,255,255,0.6); }
.service-card.dark-card .sc-list li { color: rgba(255,255,255,0.65); border-color: var(--border-light); }
.service-card.dark-card .sc-num { color: rgba(212,168,71,0.25); }
.service-card.research-card { border-left: 4px solid var(--res-color); }

.sc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(14,27,46,0.08);
  line-height: 1;
  margin-bottom: -8px;
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { font-size: 0.94rem; }
.sc-list { margin: 4px 0; }
.sc-list li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-list li::before { content: '–'; color: var(--amber-dark); font-weight: 700; }

/* ---- PROCESS ---- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ps-num {
  width: 48px; height: 48px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }
.ps-arrow {
  font-size: 1.8rem;
  color: var(--amber);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ---- ABOUT PAGE ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.portrait-frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 3px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.portrait-placeholder {
  text-align: center;
  padding: 40px;
}
.portrait-initials {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.portrait-placeholder p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.portrait-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ptag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.ptag.accent { background: var(--amber); color: var(--navy); }

.about-bio .section-tag { margin-bottom: 10px; }
.about-bio h2 { margin-bottom: 20px; }
.about-bio p { margin-bottom: 16px; }
.about-contact-strip {
  margin: 28px 0;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--amber-dark);
  font-size: 0.95rem;
}
.about-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* CREDENTIALS */
.cred-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 24px;
  border-left: 2px solid var(--border-light);
}
.cred-item {
  position: relative;
  padding: 0 0 48px 36px;
}
.cred-item:last-child { padding-bottom: 0; }
.cred-dot {
  position: absolute;
  left: -9px; top: 4px;
  width: 16px; height: 16px;
  background: var(--amber);
  border-radius: 50%;
  border: 3px solid var(--navy);
}
.cred-year {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  display: block;
}
.cred-item h4 { color: var(--white); margin-bottom: 10px; }
.cred-item p { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin-bottom: 14px; }
.cred-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cred-tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(212,168,71,0.12);
  color: var(--amber-light);
  border: 1px solid rgba(212,168,71,0.2);
}

/* STATS SHOWCASE */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat-showcase-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-showcase-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.ss-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.ss-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-showcase-item p { font-size: 0.86rem; color: var(--text-muted); }

/* SKILLS SECTION */
.skills-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.skills-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.skill-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.stag {
  font-size: 0.83rem;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  font-weight: 500;
  transition: var(--transition);
}
.stag:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }

.contact-methods { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.cm-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-dark);
}
.cm-icon svg { width: 20px; height: 20px; }
.cm-label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.cm-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
a.cm-value { color: var(--amber-dark); }
a.cm-value:hover { color: var(--amber); }

.availability-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(39,169,110,0.08);
  border: 1px solid rgba(39,169,110,0.2);
  margin-bottom: 28px;
}
.avail-dot {
  width: 10px; height: 10px;
  background: var(--seo-color);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(39,169,110,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(39,169,110,0.2); } 50% { box-shadow: 0 0 0 6px rgba(39,169,110,0.08); } }
.availability-box strong { display: block; color: var(--seo-color); font-size: 0.9rem; margin-bottom: 4px; }
.availability-box p { font-size: 0.88rem; color: var(--text-muted); }

.service-quick-links p { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.sql-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sql-tag {
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--text-dark);
  border: 1px solid var(--border);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.sql-tag:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.form-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,168,71,0.12);
}
.form-group textarea { resize: vertical; }
.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  text-align: center;
  padding: 40px;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--seo-color);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h4 { margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
}
.faq-q:hover { color: var(--amber-dark); }
.faq-icon { font-size: 1.4rem; color: var(--amber-dark); flex-shrink: 0; transition: var(--transition); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 200px; }
.faq-a p { padding: 0 0 22px; color: var(--text-muted); font-size: 0.93rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-badge-float { bottom: -10px; right: 0; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .service-cards-grid.three-col { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-showcase { grid-template-columns: repeat(2, 1fr); }
  .skills-columns { grid-template-columns: 1fr; gap: 28px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 320px; margin: 0 auto 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .ps-arrow { transform: rotate(90deg); margin: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section-pad { padding: 64px 0; }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .services-header { flex-direction: column; }
  .stats-showcase { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cred-timeline { padding-left: 16px; }
  .cred-item { padding-left: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-showcase { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .expertise-card { padding: 28px 24px; }
  .testi-card { padding: 24px; }
}

/* ---- ANIMATIONS (on scroll) ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ADDITIONS: Pricing, Blog, WhatsApp, Hero Fix
   ============================================= */

/* ---- HERO TITLE FULL-WIDTH ---- */
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  max-width: 100%;
  font-weight: 900;
}

/* ---- GLOBAL FONT SIZE BUMP ---- */
body { font-size: 17px; }
p { font-size: 1rem; }
.lead-text { font-size: 1.2rem; }
.nav-link { font-size: 0.95rem; }
.sc-list li { font-size: 0.92rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
.service-card h3 { font-size: 1.22rem; }
.service-card p { font-size: 0.97rem; }
.section-desc { font-size: 1.05rem; }

/* ---- PRICING BADGE ON CARDS ---- */
.sc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}
.sc-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.3;
}
.sc-price-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--amber-dark);
  display: block;
}
.sc-price-badge.dark strong { color: var(--amber-light); }
.sc-price-badge.dark { color: rgba(255,255,255,0.45); }

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float svg { width: 60px; height: 60px; }
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---- BLOG STYLES ---- */
.section-pad-sm { padding: 64px 0; }

.blog-hero { padding-bottom: 56px; }

.blog-filters-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 100;
}
.blog-filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tag {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.filter-tag:hover { border-color: var(--amber); color: var(--amber-dark); }
.filter-tag.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.blog-search {
  position: relative;
  flex-shrink: 0;
}
.blog-search input {
  padding: 9px 16px 9px 40px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  width: 220px;
  background: var(--white);
  transition: var(--transition);
  color: var(--text-dark);
}
.blog-search input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(212,168,71,0.1); }
.blog-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

/* FEATURED POST */
.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
  transition: var(--transition);
}
.featured-post-card:hover { box-shadow: var(--shadow-lg); }
.fp-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  line-height: 1.25;
}
.fp-excerpt { font-size: 1rem; margin-bottom: 24px; color: var(--text-body); }
.fp-meta-col .post-meta { margin-bottom: 28px; }
.fp-img-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.seo-bg { background: linear-gradient(135deg, var(--seo-color), #1a7a50); }
.wordpress-bg { background: linear-gradient(135deg, #3b87c4, #1a5a8c); }
.woo-bg { background: linear-gradient(135deg, #7f54b3, #5a3a8c); }
.fp-stats { display: flex; gap: 16px; }
.fp-stat { text-align: center; flex: 1; }
.fp-stat span { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-dark); }
.fp-stat small { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* BLOG GRID — Multiple Card Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Category colours */
.post-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.wp-cat { background: rgba(59,135,196,0.12); color: #1a5a8c; }
.seo-cat { background: rgba(39,169,110,0.12); color: #1a7a50; }
.woo-cat { background: rgba(127,84,179,0.12); color: #5a3a8c; }
.res-cat { background: rgba(196,93,59,0.12); color: #8c3a1a; }
.dm-cat { background: rgba(155,89,182,0.12); color: #6c3483; }
.tut-cat { background: rgba(230,126,34,0.12); color: #b85c10; }

/* Style 1: Standard with image */
.blog-card.style-standard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card.style-standard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.bc-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
}
.blog-card.style-standard .bc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

/* Style 2: Highlighted left border */
.blog-card.style-highlight {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.blog-card.style-highlight:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card.style-highlight .bc-body { padding: 28px; }

/* Style 3: Minimal clean */
.blog-card.style-minimal {
  background: var(--white);
  border-top: 3px solid var(--navy);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card.style-minimal:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card.style-minimal .bc-body { padding: 0; }

/* Style 4: Dark card */
.blog-card.style-dark {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.blog-card.style-dark:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(14,27,46,0.3); border-color: var(--amber); }
.blog-card.style-dark .bc-body { padding: 0; }
.blog-card.style-dark h3 a, .blog-card.style-dark h3 { color: var(--white); }
.blog-card.style-dark p { color: rgba(255,255,255,0.6); }
.blog-card.style-dark .post-date, .blog-card.style-dark .post-read { color: rgba(255,255,255,0.4); }
.blog-card.style-dark .read-more { color: var(--amber); }
.blog-card.style-dark .meta-dot { color: rgba(255,255,255,0.25); }

/* Common card elements */
.bc-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.bc-body h3 a { color: var(--text-dark); transition: var(--transition); }
.bc-body h3 a:hover { color: var(--amber-dark); }
.bc-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.bc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.blog-card.style-dark .bc-footer { border-top-color: var(--border-light); }
.post-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.post-date, .post-read, .post-author { font-size: 0.8rem; color: var(--text-muted); }
.meta-dot { color: var(--border); font-size: 0.8rem; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--amber-dark); white-space: nowrap; transition: var(--transition); }
.read-more:hover { letter-spacing: 0.02em; }

/* LOAD MORE */
.blog-load-more { text-align: center; }
.load-more-hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }

/* NEWSLETTER */
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nl-text .section-tag { color: var(--amber-light); border-color: rgba(212,168,71,0.3); }
.light-title { color: var(--white); }
.nl-text p { color: rgba(255,255,255,0.6); margin-top: 12px; }
.nl-inputs { display: flex; gap: 12px; margin-bottom: 12px; }
.nl-inputs input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.nl-inputs input::placeholder { color: rgba(255,255,255,0.35); }
.nl-inputs input:focus { border-color: var(--amber); background: rgba(255,255,255,0.1); }
.nl-privacy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* POPULAR TOPICS */
.topic-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  gap: 12px;
}
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.tc-icon { width: 44px; height: 44px; }
.tc-icon svg { width: 100%; height: 100%; }
.topic-card h4 { font-size: 0.95rem; color: var(--text-dark); margin: 0; }
.tc-count { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.woo-color { color: #7f54b3; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-cards { grid-template-columns: repeat(3, 1fr); }
  .newsletter-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-post-card { grid-template-columns: 1fr; }
  .fp-visual { display: none; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .topic-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-filters-inner { flex-direction: column; align-items: flex-start; }
  .blog-search input { width: 100%; }
  .nl-inputs { flex-direction: column; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 54px; height: 54px; }
}
@media (max-width: 480px) {
  .topic-cards { grid-template-columns: repeat(2, 1fr); }
  .featured-post-card { padding: 28px 20px; }
}

/* ---- HERO BELOW-HEADING CENTERED ---- */
.hero-badges { justify-content: flex-start; }

.hero-below {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: 32px;
}

.hero-below .hero-subtitle {
  max-width: 640px;
  margin-bottom: 36px;
  text-align: center;
}

.hero-below .hero-actions {
  justify-content: center;
  margin-bottom: 52px;
}

.hero-below .hero-stats {
  justify-content: center;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-below .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-below .hero-actions .btn { width: 100%; justify-content: center; }
}
