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

:target {
  scroll-margin-top: 100px;
}

:root {
  --primary-color: #2b3a42; /* Deep Slate */
  --secondary-color: #6d6d6d; /* Muted Slate - Improved for accessibility */
  --accent-color: #c9a87c; /* Soft Gold */
  --text-color: #333333; /* Darker Gray */
  --bg-color: #faf9f7; /* Off-White/Pearl */
  --nav-bg: rgba(250, 249, 247, 0.95);
  
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary-color);
  font-weight: normal;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-color);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow-container {
  max-width: 800px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--secondary-color);
  transition: background 0.3s ease;
}

.header-transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.header-transparent .logo,
.header-transparent .nav-links a {
  color: #fff;
}

.header-transparent .mobile-menu-btn span {
  background-color: #fff;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--primary-color);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, rgba(250,249,247,1) 0%, rgba(214,207,196,0.3) 100%);
  border-bottom: 1px solid var(--secondary-color);
}

.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, rgba(43, 58, 66, 0.15), rgba(43, 58, 66, 0.45));
  color: #fff;
  border-bottom: none;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Extra height for parallax movement */
  background: url('https://picsum.photos/seed/sky/1920/1080');
  background-size: cover;
  background-position: center;
  z-index: -1;
  will-change: transform;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-home .container {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

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

.hero-home h1, 
.hero-home .subtitle {
  color: #fff !important;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-color);
}

.hero-home .subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 300;
  line-height: 1.6;
}

.hero-home .btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
}

.hero-home .btn:hover {
  background-color: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  border-radius: 3px;
  transition: var(--transition);
  border: 1px solid var(--accent-color);
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}

/* Main Content */
.section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fff;
}

.warning-section {
  background-color: #fff;
  position: relative;
}

.warning-content {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-color);
}

.warning-content .lead {
  margin-bottom: 3rem;
  font-weight: 400;
}

.quote-box {
  padding: 3rem;
  background: var(--bg-color);
  border-left: 4px solid var(--accent-color);
  margin: 3rem 0;
  border-radius: 0 12px 12px 0;
}

.hook-text {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--primary-color);
  margin: 0;
}

/* Solution Section */
.solution-section {
  background-color: var(--bg-color);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-top: -1.5rem;
  margin-bottom: 4rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.pillar-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: rgba(43, 58, 66, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.pillar-icon i {
  width: 32px;
  height: 32px;
}

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Promise Section */
.promise-section {
  background-color: #fff;
}

.promise-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.promise-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.promise-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--bg-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.promise-icon i {
  width: 28px;
  height: 28px;
}

.promise-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.promise-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* CTA Section */
.cta-section {
  background-color: var(--bg-color);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.cta-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(43, 58, 66, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.cta-icon i {
  width: 28px;
  height: 28px;
}

.cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.cta-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 2rem;
  flex-grow: 1;
}

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

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.share-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.share-btn i {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Journey Section */
.journey-section {
  background-color: #fff;
  overflow: hidden;
}

.journey-timeline {
  position: relative;
  max-width: 1000px;
  margin: 5rem auto;
  padding: 2rem 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #e2e8f0 10%, #e2e8f0 90%, transparent);
  transform: translateX(-50%);
}

.journey-point {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  justify-content: flex-end;
}

.journey-point:nth-child(even) {
  justify-content: flex-start;
}

.journey-point-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #fff, 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}

.journey-point-content {
  width: 45%;
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.journey-point:nth-child(even) .journey-point-content {
  border-left: none;
  border-right: 4px solid var(--accent-color);
}

.journey-point-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.journey-label {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(201, 168, 124, 0.12);
  color: #a8844f;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.journey-point h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.journey-point p {
  color: var(--secondary-color);
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
}

.journey-point.highlight .journey-point-content {
  background: linear-gradient(to bottom right, #fff, var(--bg-color));
  border-left-width: 6px;
}

.journey-point.highlight:nth-child(even) .journey-point-content {
  border-right-width: 6px;
  border-left-width: 0;
}

@media (max-width: 992px) {
  .journey-timeline::before {
    left: 20px;
    transform: none;
  }
  
  .journey-point {
    justify-content: flex-start !important;
    padding-left: 50px;
  }
  
  .journey-point-marker {
    left: 20px;
    transform: translate(-50%, -50%);
  }
  
  .journey-point-content {
    width: 100%;
    padding: 2rem;
    border-left: 4px solid var(--accent-color) !important;
    border-right: none !important;
  }
}

.founder-closing {
  max-width: 600px;
  margin: 4rem auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--secondary-color);
}

/* Vision & Mission Section */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.pillar-box {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.pillar-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-color);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.pillar-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.pillar-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 992px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Principles Section */
.principles-section {
  background-color: #fff;
}

.golden-rule-box {
  max-width: 800px;
  margin: 3rem auto 5rem;
  background: var(--primary-color);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.golden-rule-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.golden-rule-box h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.golden-rule-box p {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.attributes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.attribute-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.attribute-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.attribute-item:hover .attribute-icon {
  transform: translateY(-5px);
  background: var(--primary-color);
  color: #fff;
}

.attribute-icon i {
  width: 24px;
  height: 24px;
}

.attribute-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  .attributes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .golden-rule-box p {
    font-size: 1.5rem;
  }
  .attributes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Recruitment Section */
.recruitment-section {
  background-color: var(--bg-color);
}

.openings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.opening-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opening-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.opening-icon {
  width: 60px;
  height: 60px;
  background: rgba(43, 58, 66, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.opening-icon i {
  width: 28px;
  height: 28px;
}

.opening-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.opening-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .openings-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Blog Category Filtering */
.filter-container {
  position: relative;
  margin-bottom: 3rem;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-btn {
  padding: 0.6rem 1.5rem;
  background: #fff;
  border: 1px solid var(--bg-color);
  border-radius: 50px;
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.category-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(43, 58, 66, 0.2);
}

.scroll-btn {
  display: none;
}

@media (max-width: 768px) {
  .category-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.5rem 2rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
  }
  
  .category-filter::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  
  .category-btn {
    white-space: nowrap;
  }

  .scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-70%); /* Adjust for padding difference */
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--bg-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .scroll-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .left-btn {
    left: 0;
  }

  .right-btn {
    right: 0;
  }
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.grid .card {
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.grid .card.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

/* Blog Entry - Scroll of Knowledge */
.blog-entry-layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 0.5rem;
  line-height: 1;
}

.sidebar-links {
  list-style: none;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  color: var(--secondary-color);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-links a:hover {
  color: var(--accent-color);
}

.blog-content-body {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem; /* Increased for better readability */
  line-height: 1.9;
  color: var(--text-color);
  max-width: 800px; /* Optimal reading width */
}

/* Contemplation Callout */
.contemplation-box {
  background: var(--bg-color);
  border-left: 6px solid var(--accent-color);
  padding: 3rem;
  margin: 4rem 0;
  border-radius: 0 24px 24px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contemplation-box h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.contemplation-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.5;
}

/* Viral Share Section */
.blog-share-section {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--bg-color);
}

.blog-share-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
}

.share-buttons-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn-viral {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease, filter 0.3s ease;
  text-decoration: none;
}

.share-btn-viral:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.share-btn-viral.email { background-color: #7f8c8d; }
.share-btn-viral.facebook { background-color: #1877F2; }
.share-btn-viral.whatsapp { background-color: #25D366; }
.share-btn-viral.x-twitter { background-color: #000000; color: #ffffff; }

.share-btn-viral i,
.share-btn-viral svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .blog-content-body {
    font-size: 1.2rem;
  }
  .contemplation-box {
    padding: 2rem;
  }
  .contemplation-box p {
    font-size: 1.25rem;
  }
  .share-buttons-grid {
    gap: 1rem;
    justify-content: center;
  }
  .share-btn-viral {
    width: 45px;
    height: 45px;
  }
}

.blog-content-body h2 {
  font-family: var(--font-sans);
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  color: var(--primary-color);
}

.blog-content-body p {
  margin-bottom: 1.5rem;
}

.blog-header-meta {
  margin-bottom: 2rem;
  line-height: 1;
}

.blog-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

@media (max-width: 1200px) {
  .blog-entry-layout {
    grid-template-columns: 200px 1fr;
  }
  .blog-sidebar.right {
    display: none;
  }
}

@media (max-width: 992px) {
  .blog-entry-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    margin-bottom: 3rem;
  }
}

.clarification-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.clarification-box p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}

.hero-about,
.hero-blogs {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(43, 58, 66, 0.2), rgba(43, 58, 66, 0.5));
  color: #fff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-bg-about {
  background: url('https://picsum.photos/seed/sunshine/1920/1080');
  background-size: cover;
  background-position: center;
}

.hero-bg-blogs {
  background: url('https://picsum.photos/seed/sunrise/1920/1080');
  background-size: cover;
  background-position: center;
}

.hero-about h1, 
.hero-blogs h1 {
  color: #fff !important;
}

.hero-about .subtitle,
.hero-blogs .subtitle {
  color: #fff !important;
}

/* Featured Blog Section */
.featured-blog-section {
  margin-top: -60px;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}

.featured-blog-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--bg-color);
}

.featured-blog-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.featured-blog-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.featured-blog-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.featured-blog-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.read-time i {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .featured-blog-card {
    padding: 2rem;
  }
  .featured-blog-content h2 {
    font-size: 1.8rem;
  }
  .featured-blog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

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

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title::after {
  display: none;
}

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

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

.breadcrumbs a {
  color: var(--text-color);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.breadcrumbs span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Cards / Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* Requirements Box */
.requirements-box {
  background: var(--primary-color);
  color: #fff;
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
}

.requirements-box h2 {
  color: var(--accent-color);
}

.requirements-box p {
  color: #e0e0e0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-content h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-links a {
    color: var(--primary-color) !important;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-home {
    padding-top: 120px;
    padding-bottom: 40px;
    height: 100vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-home .subtitle {
    font-size: 1.1rem;
    padding: 0;
    margin-bottom: 2rem;
  }

  .hero-home .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left !important;
  }

  .subtitle,
  .hero h1,
  .hero .subtitle {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .text-center {
    text-align: left !important;
  }

  .pillar-card,
  .cta-card,
  .cta-section .section-title,
  .cta-section .section-subtitle {
    text-align: center !important;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .btn-large {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* Mobile Landscape Hero Alignment */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-home,
  .hero-about,
  .hero-blogs {
    justify-content: flex-start !important;
    text-align: left !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }
  
  .hero .container,
  .hero-home .container {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 5% !important;
    max-width: 90% !important;
  }
  
  .hero h1,
  .hero .subtitle {
    text-align: left !important;
    margin-left: 0 !important;
    max-width: 85%;
  }

  .hero .btn {
    margin-left: 0 !important;
    display: inline-block !important;
    width: auto !important;
  }
}
