/* 
   Rodion Vynnychenko - Brand & Consulting Stylesheet
   Design Language: Professional, clean, light-themed, data-driven, no-nonsense.
   Palette: Rich Slate Blue, Deep Teal, and warm Gold accents.
*/

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

:root {
  /* HSL Color System */
  --bg-primary: hsl(0, 0%, 100%);
  --bg-secondary: hsl(210, 40%, 98%);
  --bg-tertiary: hsl(210, 30%, 95%);
  --text-primary: hsl(222, 47%, 11%);
  --text-secondary: hsl(215, 25%, 38%);
  --text-light: hsl(215, 16%, 47%);
  
  --primary: hsl(221, 39%, 15%);       /* Dark Slate Blue */
  --primary-hover: hsl(221, 39%, 8%);
  --primary-light: hsl(217, 30%, 92%);
  --teal-accent: hsl(173, 80%, 30%);     /* Deep Professional Teal */
  --gold-accent: hsl(38, 92%, 48%);      /* Warm Amber/Gold */
  --gold-hover: hsl(38, 92%, 40%);
  
  --border-color: hsl(214, 32%, 91%);
  --border-focus: hsl(217, 89%, 61%);
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: hsl(215, 20%, 80%);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(215, 20%, 65%);
}

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

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-secondary);
}

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

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* Sticky Glassmorphic Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--teal-accent);
  transition: var(--transition-normal);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--bg-primary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background-color: var(--teal-accent);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  margin: 6px 0;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 30%, var(--teal-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

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

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

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

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

.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--bg-primary);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.hero-experience-badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background-color: var(--bg-primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border-left: 4px solid var(--gold-accent);
  animation: float 4s ease-in-out infinite;
}

.hero-experience-badge h4 {
  font-size: 24px;
  color: var(--teal-accent);
}

.hero-experience-badge p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Stats Ribbon */
.stats-ribbon {
  background-color: var(--primary);
  color: var(--bg-primary);
  padding: 40px 0;
  border-bottom: 4px solid var(--gold-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 40px;
  color: var(--gold-accent);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-light);
}

/* Section Header */
.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-accent);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--bg-primary);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--teal-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* Timeline Components */
.timeline-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 4px solid var(--teal-accent);
  z-index: 2;
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--gold-accent);
  border-color: var(--primary);
  transform: scale(1.2);
}

.timeline-content {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-accent);
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
  gap: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.timeline-title span {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 15px;
}

.timeline-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-accent);
  background-color: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-accent);
}

.blog-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 32px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-title a:hover {
  color: var(--teal-accent);
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(221, 39%, 8%) 100%);
  color: var(--bg-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(255,255,255,0) 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner h2 {
  color: var(--bg-primary);
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-banner p {
  color: var(--primary-light);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background-color: var(--gold-accent);
  color: var(--primary);
}

.cta-banner .btn-primary:hover {
  background-color: var(--bg-primary);
  transform: translateY(-2px);
}

/* Global Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--bg-primary);
  padding: 60px 0 30px;
  border-top: 4px solid var(--teal-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--bg-primary);
  font-size: 22px;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.footer-brand h3 span {
  color: var(--gold-accent);
}

.footer-brand p {
  color: var(--primary-light);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--gold-accent);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-links-list a {
  color: var(--primary-light);
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--bg-primary);
  padding-left: 4px;
}

.footer-email-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: var(--radius-md);
}

.footer-email-card p {
  font-size: 12px;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.footer-email-link {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-email-link:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--primary-light);
}

/* Contact Page Form & Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-md);
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.contact-info-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info-card > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  color: var(--teal-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.contact-info-content p, .contact-info-content a {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.contact-info-content a:hover {
  color: var(--teal-accent);
}

.copy-email-btn {
  background: none;
  border: none;
  color: var(--teal-accent);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

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

.guidelines-box {
  background-color: var(--bg-primary);
  border-left: 4px solid var(--gold-accent);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.guidelines-box h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.guidelines-box ul {
  font-size: 13px;
  color: var(--text-secondary);
  list-style: disc;
  padding-left: 16px;
}

.guidelines-box li {
  margin-bottom: 6px;
}

/* Web3Forms Contact Form Styling */
.contact-form-container {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-container > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  background-color: var(--bg-primary);
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Beautiful native form validation using CSS */
.form-control:user-valid {
  border-color: hsl(142, 71%, 45%);
}

/* Async Submission States via JS */
.form-status {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeIn 0.3s ease-in-out;
}

.form-status.success {
  display: block;
  background-color: hsl(142, 69%, 96%);
  border: 1px solid hsl(142, 72%, 80%);
  color: hsl(142, 76%, 20%);
}

.form-status.error {
  display: block;
  background-color: hsl(0, 86%, 97%);
  border: 1px solid hsl(0, 93%, 84%);
  color: hsl(0, 74%, 25%);
}

/* Blog Hub Filter Styles */
.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.filter-group {
  display: flex;
  gap: 10px;
}

.filter-badge {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-badge:hover, .filter-badge.active {
  background-color: var(--teal-accent);
  color: var(--bg-primary);
  border-color: var(--teal-accent);
}

.search-input {
  max-width: 300px;
}

/* Blog Article Layout */
.blog-post {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 100px;
}

.post-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.post-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.post-header h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.post-author-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.post-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.post-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.post-meta-details {
  font-size: 12px;
  color: var(--text-light);
}

.post-featured-image {
  max-width: 1000px;
  margin: 0 auto 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-content-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-body {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.8;
}

.post-body p {
  margin-bottom: 24px;
}

.post-body h2 {
  font-size: 26px;
  color: var(--primary);
  margin: 40px 0 20px;
  font-weight: 700;
}

.post-body h3 {
  font-size: 20px;
  color: var(--teal-accent);
  margin: 30px 0 15px;
  font-weight: 600;
}

.post-body ul, .post-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.post-body li {
  margin-bottom: 8px;
  position: relative;
}

.post-body ul li {
  list-style: disc;
}

.post-body ol li {
  list-style: decimal;
}

.post-body blockquote {
  border-left: 4px solid var(--gold-accent);
  background-color: var(--bg-secondary);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  margin: 32px 0;
  color: var(--text-secondary);
}

.post-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-share-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-experience-badge {
    right: 20px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.open {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .contact-form-container {
    padding: 30px 20px;
  }
  .post-header h1 {
    font-size: 30px;
  }
}

/* Language Toggle Button */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--bg-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
  background-color: var(--primary-light);
  color: var(--teal-accent);
  border-color: var(--teal-accent);
  transform: translateY(-1px);
}

