/* =========================================
   NUVORRO WEALTH — UI PREVIEW
   Design System & Component Styles
   ========================================= */

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

:root {
  --green: #3CB54A;
  --navy: #1A2F6B;
  --mint: #4ECDC4;
  --teal: #2BBFB3;
  --navy-dark: #0D1B4A;
  --off-white: #F8FAF9;
  --light-gray: #F0F4F3;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --gradient-brand: linear-gradient(135deg, #3CB54A 0%, #2BBFB3 100%);
  --gradient-navy: linear-gradient(135deg, #0D1B4A 0%, #1A2F6B 100%);
  --gradient-hero: linear-gradient(160deg, #050f2e 0%, #0d1b4a 40%, #0a2e28 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  --shadow-green: 0 8px 32px rgba(60,181,74,0.3);
  --shadow-navy: 0 8px 40px rgba(13,27,74,0.25);
  --shadow-card: 0 4px 24px rgba(26,47,107,0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: white;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ---------- TYPOGRAPHY ---------- */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.text-white-stroke {
  -webkit-text-stroke: 2px rgba(255,255,255,0.8);
  -webkit-text-fill-color: transparent;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-label.light { color: rgba(60,181,74,0.85); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title.light { color: white; }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }

.section-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-bounce);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(60,181,74,0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gradient-brand);
  color: white !important;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  box-shadow: var(--shadow-green);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(60,181,74,0.45);
  color: white !important;
}

.btn-large { padding: 1.0625rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(10, 20, 60, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.25);
  padding: 0.875rem 0;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-starburst {
  animation: starburstPulse 4s ease-in-out infinite;
  transform-origin: center;
  cursor: pointer;
}
.logo-starburst:hover {
  animation: starburstSpin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes starburstPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.06) rotate(6deg); }
  75% { transform: scale(0.97) rotate(-4deg); }
}
@keyframes starburstSpin {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.15) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 56px;
}

/* Spinning icon */
.logo-icon-spin {
  flex-shrink: 0;
  animation: logoWheel 8s linear infinite;
  transform-origin: center;
}
@keyframes logoWheel {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Static text beside the icon */
.logo-text-static {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  color: #3CB54A;
  letter-spacing: 0.05em;
}
.logo-sub-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-primary {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--navy);
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: white; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 6rem;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--green); top: -100px; right: 100px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: var(--mint); bottom: 0; left: -50px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: #2BBFB3; top: 50%; right: 25%; animation-delay: -6s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem 4rem 1.5rem;
  max-width: 640px;
  margin-left: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(60,181,74,0.12);
  border: 1px solid rgba(60,181,74,0.3);
  color: #7ee89a;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4375rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50% { box-shadow: 0 0 14px var(--green); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  animation: fadeSlideUp 0.9s 0.35s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s 0.5s ease both;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  margin-top: 3.5rem;
  animation: fadeSlideUp 0.9s 0.7s ease both;
}
.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, rgba(60,181,74,0.8), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 28px; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-image-panel {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 3rem;
  animation: fadeSlideUp 1s 0.3s ease both;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-brand);
}

.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  color: white;
  min-width: 130px;
  animation: cardFloat 5s ease-in-out infinite;
}
.card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.card-2 { top: 30px; right: -30px; animation-delay: -2.5s; }
.stat-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.stat-value { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--green); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--gradient-brand);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-item.revealed { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-divider {
  width: 40px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  margin: 0 auto 0.75rem;
}
.stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; padding-bottom: 2rem; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #d4edda 0%, #e8f5e9 40%, #e3f2fd 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(60,181,74,0.15);
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(60,181,74,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(26,47,107,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.about-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}
.about-accent-card {
  position: absolute;
  bottom: 0; left: -16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(26,47,107,0.14);
  max-width: 240px;
  border-left: 3px solid var(--green);
  z-index: 2;
}
.accent-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.about-accent-card p { font-size: 0.8125rem; color: var(--text-muted); font-style: italic; line-height: 1.6; margin: 0; }

/* ---------- ABOUT PAGE MISSION SECTION ---------- */
.about-mission-section {
  padding: 5rem 0;
  background: var(--off-white);
}
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mission-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition-bounce);
}
.mission-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
  border-color: rgba(60,181,74,0.25);
}
.mission-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(60,181,74,0.1), rgba(26,47,107,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.mission-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-values {
  list-style: none;
  margin-bottom: 2rem;
}
.about-values li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
}
.value-dot {
  width: 10px; height: 10px;
  background: var(--gradient-brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  padding: 7rem 0;
  position: relative;
  background: var(--navy-dark);
}
.services-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-navy);
  opacity: 0.97;
}
.services-section .container { position: relative; z-index: 1; }

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

.service-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.service-card.revealed { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow-green); border-color: rgba(60,181,74,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-color: rgba(60,181,74,0.3); background: rgba(60,181,74,0.08); }
.service-card.featured::before { transform: scaleX(1); }

.featured-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gradient-brand);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
}

.service-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(60,181,74,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-bounce), background var(--transition);
}
.service-card:hover .service-icon-wrap { transform: rotate(8deg) scale(1.1); background: rgba(60,181,74,0.2); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.service-link span { transition: transform var(--transition); }
.service-card:hover .service-link span { transform: translateX(4px); }

/* ---------- WHY SECTION ---------- */
.why-section { padding: 7rem 0; background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-bounce);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.revealed { opacity: 1; transform: translateY(0); }
.why-card:hover {
  border-color: rgba(60,181,74,0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}
.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.why-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.testimonials-section .container { position: relative; z-index: 1; }

.testimonials-track-wrapper { position: relative; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  cursor: grab;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track:active { cursor: grabbing; }

.testimonial-card {
  min-width: calc(100% / 2 - 1.5rem);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition-bounce);
}
.testimonial-card:hover { transform: translateY(-6px); }
.testimonial-stars { color: #FFD700; font-size: 1.125rem; margin-bottom: 1.25rem; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.9375rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1.75rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: white; font-size: 0.9375rem; }
.author-title { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--green); border-color: var(--green); transform: scale(1.1); }
.carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.carousel-dot.active { width: 24px; border-radius: 4px; background: var(--green); }

/* ---------- BLOG SECTION ---------- */
.blog-section { padding: 7rem 0; background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.blog-card.revealed { opacity: 1; transform: translateY(0); }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(26,47,107,0.15); }

.blog-image {
  position: relative;
  background: var(--light-gray);
}
.featured-blog .blog-image { height: 240px; }
.blog-card:not(.featured-blog) .blog-image { height: 160px; }

.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
}
.blog-img-placeholder.small { gap: 0.25rem; }

.blog-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--cat-color, var(--green));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
}

.blog-content { padding: 1.5rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-read { color: var(--green); font-weight: 600; }
.blog-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.featured-blog .blog-title { font-size: 1.25rem; }
.blog-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.blog-link { font-size: 0.875rem; font-weight: 600; color: var(--green); text-decoration: none; transition: gap var(--transition); }
.blog-link:hover { color: var(--navy); }
.blog-cta { text-align: center; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cta-banner.revealed { opacity: 1; transform: translateY(0); }
.cta-banner-bg {
  position: absolute; inset: 0;
  background: var(--gradient-brand);
}
.cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.cta-content p { font-size: 1.0625rem; color: rgba(255,255,255,0.8); margin-bottom: 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-content .btn-primary {
  background: white;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-content .btn-primary:hover { background: white; box-shadow: 0 16px 48px rgba(0,0,0,0.2); }

/* ---------- CONTACT ---------- */
.contact-section { padding: 7rem 0; background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-details { margin: 2rem 0; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60,181,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.form-check label { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-dark); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: white; transform: translateY(-2px); }

.footer-nav-group h4 { font-size: 0.8125rem; font-weight: 700; color: white; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-nav-group ul { list-style: none; }
.footer-nav-group li { margin-bottom: 0.625rem; }
.footer-nav-group a { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-nav-group a:hover { color: var(--green); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--green); }

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 150;
  background: var(--gradient-brand);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-green);
  animation: floatingPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition-bounce), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; pointer-events: all; }
.floating-cta:hover { transform: scale(1.06) translateY(-3px); animation-play-state: paused; }
@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(60,181,74,0.4), var(--shadow-green); }
  50% { box-shadow: 0 0 0 10px rgba(60,181,74,0), var(--shadow-green); }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.open { transform: translateX(0); }
.close-menu {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 1.5rem;
  cursor: pointer;
}
.mobile-logo-link { display: block; text-align: center; margin-bottom: 2rem; }
.mobile-logo-img { height: 80px; width: auto; margin: 0 auto; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin-bottom: 1.25rem; }
.mobile-nav a { font-size: 1.5rem; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .btn { display: inline-flex; margin-top: 0.75rem; }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---------- GET STARTED SECTION ---------- */
.get-started-section {
  padding: 6rem 0 4rem;
  background: var(--off-white);
}

.get-started-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
}

.get-started-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  position: relative;
}

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
  z-index: 1;
}

.step-connector {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, #3CB54A, rgba(60,181,74,0.15));
  margin: 0.5rem 0;
  min-height: 60px;
}

.step-content {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 0 0 3.5rem 1.5rem;
  align-items: start;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  border: 1px solid var(--light-gray);
}

.step-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
  margin-top: 0.75rem;
}

.step-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.step-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ---------- TRUST SIGNALS ---------- */
.trust-signals-section {
  padding: 3rem 0;
  background: white;
  border-bottom: 1px solid var(--light-gray);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-gray);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trust-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(60,181,74,0.12);
}

.trust-icon { font-size: 1.75rem; flex-shrink: 0; }

.trust-text { display: flex; flex-direction: column; gap: 0.125rem; }
.trust-text strong { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.trust-text span { font-size: 0.75rem; color: var(--text-muted); }

/* Form header */
.form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light-gray);
}
.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-panel { display: none; }
  .hero-content { max-width: 100%; padding: 6rem 1.5rem 5rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-scroll-indicator { align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 1.5rem); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .get-started-step { grid-template-columns: 80px 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .floating-cta span { display: none; }
  .floating-cta { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .get-started-step { grid-template-columns: 64px 1fr; }
  .step-content { grid-template-columns: 1fr; gap: 0.75rem; padding-bottom: 2.5rem; }
  .step-icon-wrap { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badge { text-align: center; }
}

/* =========================================
   DJANGO EXTRA STYLES
   Page templates, forms, blog, extras
   ========================================= */

/* ---------- PAGE HERO ---------- */
.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- FORM STYLES ---------- */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60,181,74,0.15);
}
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-error {
  color: #e53e3e;
  font-size: 0.82rem;
  margin-top: 0.25rem;
  display: block;
}

/* ---------- FLASH MESSAGES ---------- */
.flash-messages {
  position: fixed;
  top: 80px;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 380px;
}
.flash {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
  animation: slideIn 0.3s ease;
}
.flash-success { background: #f0fff4; border-left: 4px solid var(--green); color: #276749; }
.flash-error   { background: #fff5f5; border-left: 4px solid #e53e3e; color: #c53030; }
.flash-info    { background: #ebf8ff; border-left: 4px solid #3182ce; color: #2b6cb0; }
.flash-close { background: none; border: none; cursor: pointer; color: inherit; opacity: 0.6; font-size: 1rem; padding: 0; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- BLOG LIST PAGE ---------- */
.blog-list-section { padding: 5rem 0; }
.blog-list-container { max-width: 1200px; margin: 0 auto; }
.blog-filters { margin-bottom: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.blog-search-form { display: flex; gap: 0.75rem; align-items: center; flex: 1; min-width: 280px; }
.blog-search-input { max-width: 360px; }
.blog-category-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--text-dark);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--green);
  color: white;
}
.blog-list-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.blog-empty { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--text-muted); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 3rem; }
.page-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.page-btn:hover { background: var(--green); color: white; }
.page-info { color: var(--text-muted); font-size: 0.9rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ---------- BLOG DETAIL PAGE ---------- */
.blog-detail-hero .page-hero-title { max-width: 800px; margin: 0 auto 1rem; }
.blog-post-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 0.5rem; }
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag-pill { padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(255,255,255,0.15); color: white; text-decoration: none; font-size: 0.8rem; }
.tag-pill:hover { background: var(--green); }
.blog-post-section { padding: 4rem 0; }
.blog-post-container { max-width: 800px; }
.blog-post-thumbnail { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2.5rem; }
.blog-post-thumbnail img { width: 100%; height: auto; display: block; }
.blog-post-body { line-height: 1.9; color: var(--text-dark); font-size: 1.05rem; }
.blog-post-body h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 2rem 0 1rem; color: var(--navy); }
.blog-post-body h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 1.5rem 0 0.75rem; color: var(--navy); }
.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-body ul, .blog-post-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.blog-post-body li { margin-bottom: 0.4rem; }
.blog-post-body blockquote { border-left: 4px solid var(--green); padding: 1rem 1.5rem; background: var(--light-gray); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; font-style: italic; }
.blog-post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--light-gray); }
.related-posts-section { padding: 4rem 0; background: var(--off-white); }
.related-posts-section .section-title { margin-bottom: 2.5rem; }

/* ---------- ABOUT PAGE ---------- */
.about-page { padding-top: 4rem; }
.page-hero + .about-page { padding-top: 4rem; }

/* ---------- SERVICES PAGE ---------- */
.services-page { padding-top: 2rem; }
.services-hero + .services-page .services-bg { display: none; }

/* ---------- CONTACT PAGE ---------- */
.contact-page { padding: 5rem 0; }

/* ---------- HERO REAL IMAGE ---------- */
.hero-real-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-real-img { width: 100%; height: auto; border-radius: var(--radius-lg); }
.author-avatar-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* ---------- BTN OUTLINE ---------- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: white; }

/* ---------- RESPONSIVE EXTRAS ---------- */
@media (max-width: 768px) {
  .flash-messages { right: 1rem; left: 1rem; max-width: none; }
  .blog-filters { flex-direction: column; }
  .blog-search-form { flex-direction: column; }
  .blog-search-input { max-width: 100%; }
}
