/* Deval Consultancy Design System - Professional & Clean */

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

/* CSS Variables */
:root {
  /* Core Brand Colors */
  --background: #ffffff;
  --foreground: #22252c;
  
  /* Deval Brand Palette */
  --brand-green: #2E8B57;
  --brand-green-light: #e8f5e8;
  --brand-green-dark: #1e5f3f;
  
  --brand-navy: #0A2540;
  --brand-navy-light: #f8fafc;
  
  --brand-purple: #6B21A8;
  --brand-purple-light: #f3e8ff;
  --brand-purple-dark: #581c87;
  
  /* Semantic Colors */
  --primary: #2E8B57;
  --primary-foreground: #ffffff;
  
  --secondary: #0A2540;
  --secondary-foreground: #ffffff;
  
  --accent: #6B21A8;
  --accent-foreground: #ffffff;
  
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  
  --card: #ffffff;
  --card-foreground: #0A2540;
  
  --border: #e2e8f0;
  --input: #f1f5f9;
  --ring: #6B21A8;
  
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  
  --radius: 0.75rem;
  
  /* Professional Gradients */
  --gradient-hero: linear-gradient(135deg, #2E8B57, #0A2540);
  --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);
  --gradient-accent: linear-gradient(135deg, #6B21A8, #0A2540);
  --gradient-purple: linear-gradient(135deg, #6B21A8, #581c87);
  
  /* Professional Shadows */
  --shadow-soft: 0 2px 8px rgba(30, 41, 59, 0.06);
  --shadow-medium: 0 4px 16px rgba(30, 41, 59, 0.1);
  --shadow-strong: 0 8px 32px rgba(30, 41, 59, 0.15);
  --shadow-brand: 0 4px 20px rgba(46, 139, 87, 0.25);
  
  /* Animation Variables */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
.nav {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-brand {
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-image {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--foreground);
}

.nav-menu {
  display: none;
  align-items: baseline;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--foreground);
  transition: var(--transition-smooth);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.125rem;
  background-color: var(--primary);
  border-radius: 9999px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.hamburger {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--foreground);
  transition: var(--transition-smooth);
}

.nav-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Mobile Navigation */
.nav-menu.mobile-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}

.nav-menu.mobile-open .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-menu.mobile-open .nav-link:last-child {
  border-bottom: none;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
}

.page {
  display: none;
  flex: 1;
}

.page.active {
  display: block;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-purple) 50%, var(--brand-green-dark) 100%);
  overflow: hidden;
  padding: 5rem 0;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  color: white;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  display: block;
  font-size: 1.875rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-img {
    height: 31.25rem;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.floating-stats {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--background);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-brand);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-hero {
  background: var(--gradient-hero);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  box-shadow: var(--shadow-brand);
}

.btn-hero:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

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

.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}

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

/* Sections */
.section-professional {
  padding: 4rem 0;
}

.section-accent {
  padding: 4rem 0;
  background-color: var(--brand-green-light);
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: inherit;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: inherit;
  opacity: 0.85;
  max-width: 48rem;
  margin: 0 auto;
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.page-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

.page-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto;
}

/* Cards */
.card-professional {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.card-professional:hover {
  box-shadow: var(--shadow-medium);
  transform: scale(1.02);
}

.service-card {
  background: linear-gradient(145deg, var(--brand-navy), var(--brand-purple-dark));
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
  color: white;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(107, 33, 168, 0.4);
  transform: translateY(-4px);
  border-color: var(--brand-green);
}

/* Highlights Section */
.highlights-section {
  background: linear-gradient(180deg, var(--brand-green-dark) 0%, var(--brand-navy) 100%);
  padding: 4rem 0;
  color: white;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: var(--brand-green);
}

.highlight-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.highlight-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-navy) 100%);
  padding: 4rem 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background-color: var(--background);
  padding: 4rem 0;
}

.cta-card {
  background: var(--gradient-accent);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Services */
.services-content {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-purple-dark) 50%, var(--brand-green-dark) 100%);
  padding: 4rem 0;
  color: white;
}

.service-category {
  margin-bottom: 4rem;
}

.category-header {
  text-align: center;
  margin-bottom: 2rem;
}

.category-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: white;
}

.category-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  transition: var(--transition-smooth);
}

.service-card:hover .service-title {
  color: var(--brand-green);
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Benefits */
.benefits-section {
  background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-navy) 100%);
  padding: 4rem 0;
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
  border-color: var(--brand-green);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-green));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--brand-green);
}

.benefit-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* About Page */
.about-content {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  padding: 4rem 0;
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-badge {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.about-info {
  position: relative;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-weight: 600;
  color: white;
}

.info-detail {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

/* Vision & Mission */
.vision-mission-section {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-green-dark) 100%);
  padding: 4rem 0;
  color: white;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.vision-icon,
.mission-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.vision-title,
.mission-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.vision-description,
.mission-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  padding: 4rem 0;
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: white;
}

.author-org {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* FAQs */
.faq-section {
  background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-navy) 100%);
  padding: 4rem 0;
  color: white;
}

.faq-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.faq-icon {
  color: var(--brand-green);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-left: 2rem;
}

/* Foundation */
.foundation-section {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-navy) 100%);
  padding: 4rem 0;
  color: white;
}

.foundation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.foundation-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.foundation-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.foundation-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto;
}

/* Blog */
.blog-content {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  padding: 4rem 0;
  color: white;
}

.search-container {
  max-width: 28rem;
  margin: 2rem auto 0;
}

.search-box {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  font-size: 1rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 3fr 1fr;
  }
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.featured-post {
  margin-bottom: 3rem;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.featured-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-image {
  aspect-ratio: 16/9;
  background: var(--gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-primary {
  background-color: var(--primary);
  color: white;
}

.badge-outline {
  border: 1px solid var(--border);
  color: var(--foreground);
}

.post-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  color: var(--foreground);
}

.post-excerpt {
  color: var(--muted-foreground);
}

.post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.posts-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.posts-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  cursor: pointer;
  overflow: hidden;
}

.post-card:hover {
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.post-image {
  aspect-ratio: 16/9;
  background: var(--gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  margin-bottom: 1rem;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-card .post-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--foreground);
  transition: var(--transition-smooth);
}

.post-card:hover .post-title {
  color: var(--primary);
}

.post-card .post-excerpt {
  font-size: 0.875rem;
}

.post-meta-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.recent-post-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-badge {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-badge:hover {
  background-color: var(--primary);
  color: white;
}

.newsletter-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.newsletter-btn {
  width: 100%;
}

/* Admin Note */
.admin-note-section {
  background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-navy) 100%);
  padding: 4rem 0;
  color: white;
}

.admin-note-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 64rem;
  margin: 0 auto;
}

.admin-note-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.admin-note-description {
  color: var(--muted-foreground);
}

/* Contact */
.contact-content {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-purple-dark) 100%);
  padding: 4rem 0;
  color: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-section {
  display: flex;
  flex-direction: column;
}

.form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  color: white;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-text {
  display: block;
}

.submit-icon {
  display: none;
}

.form-submit.loading .submit-text {
  display: none;
}

.form-submit.loading .submit-icon {
  display: block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.info-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item .info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item .info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-item-title {
  font-weight: 600;
  color: var(--foreground);
}

.info-detail {
  color: var(--foreground);
  font-weight: 500;
}

.info-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.social-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.social-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--muted-foreground);
  transition: var(--transition-smooth);
}

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

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer */
.footer {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.footer-logo-image {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

.footer-logo .logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--accent-foreground);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 28rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  color: var(--primary);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-foreground);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social .social-link {
  color: rgba(255, 255, 255, 0.8);
}

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

/* Utility Classes */
.hidden {
  display: none !important;
}

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

/* Responsive Design */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .floating-stats {
    position: static;
    margin-top: 1rem;
  }
}

/* Print Styles */
@media print {
  .nav,
  .footer,
  .btn,
  .nav-toggle {
    display: none !important;
  }
  
  .page {
    display: block !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero-section,
  .section-accent {
    background: none !important;
  }
}