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

/* Brand Identity & Theme System */
:root {
  --primary: #2c5013;       /* Deep Forest Green */
  --primary-rgb: 44, 80, 19;
  --secondary: #759733;     /* Leaf/Pea Green */
  --secondary-rgb: 117, 151, 51;
  --accent: #cac24d;        /* Warm Gold */
  --accent-rgb: 202, 194, 77;
  --sage: #d4d995;          /* Pale Sage Background Accent */
  --sage-rgb: 212, 217, 149;
  
  --bg-light: #fbfbfa;
  --bg-dark: #1b2f0c;
  --bg-card: #ffffff;
  --text-dark: #18280b;
  --text-muted: #5e6f54;
  --text-light: #ffffff;
  
  --border-color: rgba(44, 80, 19, 0.08);
  --border-color-focus: rgba(117, 151, 51, 0.4);
  
  --shadow-sm: 0 4px 6px -1px rgba(44, 80, 19, 0.05), 0 2px 4px -1px rgba(44, 80, 19, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(44, 80, 19, 0.08), 0 4px 6px -2px rgba(44, 80, 19, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(44, 80, 19, 0.12), 0 10px 10px -5px rgba(44, 80, 19, 0.08);
  --shadow-inset: inset 0 2px 4px 0 rgba(44, 80, 19, 0.06);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 5px;
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; position: relative; padding-bottom: 0.75rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Dynamic Section Header Ornament */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* Grid & Flex Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

/* Common Layout Components */
/* Section Padding */
section {
  padding: 6rem 0;
}
.section-muted {
  background-color: rgba(212, 217, 149, 0.12); /* Very light sage backdrop */
}

/* Primary Header & Navigation */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-base);
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--sage);
  background-color: #ffffff;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.logo-text .brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-base);
}
.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(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(44, 80, 19, 0.15);
}
.nav-cta:hover {
  background-color: var(--secondary);
  box-shadow: 0 6px 12px rgba(117, 151, 51, 0.25);
  transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.75rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    display: none; /* Controlled by JS classes */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--sage);
  }
  .main-nav.active {
    display: flex;
  }
  .nav-cta {
    margin-top: 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
  gap: 0.5rem;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(44, 80, 19, 0.2);
}
.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(117, 151, 51, 0.3);
}
.btn-secondary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}
.btn-accent {
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(202, 194, 77, 0.2);
}
.btn-accent:hover {
  background-color: #b7b041;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(202, 194, 77, 0.35);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(27, 47, 12, 0.95), rgba(44, 80, 19, 0.85)), url('../images/hero.jpg') center/cover no-repeat;
  color: var(--text-light);
  min-height: 90vh;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px; /* Shrunk from 80px to reduce transition white space */
  background: linear-gradient(to top, var(--bg-light), transparent);
  pointer-events: none;
}
.welcome-section {
  padding-top: 3rem; /* Shrunk from default 6rem to reduce upper gap */
}
.hero-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-light);
}
.hero .btn-secondary:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--text-dark);
}

/* Trust Indicators stats row */
.hero-stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}
.hero-stat-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.hero-stat-badge i {
  color: var(--accent);
  font-size: 1rem;
}

/* Glassmorphism Philosophy Card */
.hero-card-container {
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}
.hero-glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(202, 194, 77, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.glass-card-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}
.glass-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.glass-card-header h3 {
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.philosophy-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.philosophy-item:last-child {
  margin-bottom: 0;
}
.philosophy-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(202, 194, 77, 0.15);
  border: 1px solid rgba(202, 194, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.philosophy-text h4 {
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.philosophy-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Hero Quick Form Styling */
.hero-quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group-hero {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}
.form-group-hero label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}
.form-group-hero input, 
.form-group-hero select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-base);
}
.form-group-hero input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group-hero input:focus, 
.form-group-hero select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(202, 194, 77, 0.2);
}
.form-group-hero select option {
  background-color: var(--primary);
  color: var(--text-light);
}
.btn-hero-submit {
  border: none;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 10px rgba(202, 194, 77, 0.25);
}

@media (max-width: 1024px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-card-container {
    justify-content: center;
  }
  .hero-glass-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0;
    min-height: auto;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats-row {
    justify-content: center;
  }
}

/* Cards & Containers */
.card {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(117, 151, 51, 0.15);
}

/* Feature Cards (Pillars) */
/* Feature Cards (Pillars) */
.pillar-card {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
}
.pillar-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}
/* Alternate colored wave blobs in card corners */
.pillar-card:nth-child(1)::after {
  background-color: var(--secondary);
  top: -60px;
  right: -60px;
}
.pillar-card:nth-child(2)::after {
  background-color: var(--primary);
  bottom: -60px;
  right: -60px;
}
.pillar-card:nth-child(3)::after {
  background-color: var(--accent);
  top: -60px;
  right: -60px;
}

.pillar-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.pillar-icon-badge {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.pillar-card h3 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  position: relative;
  z-index: 2;
}
.pillar-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Custom badge themes for each card */
.pillar-card:nth-child(1) .pillar-icon-badge {
  background-color: rgba(117, 151, 51, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(117, 151, 51, 0.25);
}
.pillar-card:nth-child(2) .pillar-icon-badge {
  background-color: rgba(44, 80, 19, 0.1);
  color: var(--primary);
  border: 1px solid rgba(44, 80, 19, 0.25);
}
.pillar-card:nth-child(3) .pillar-icon-badge {
  background-color: rgba(202, 194, 77, 0.1);
  color: #a39b2e;
  border: 1px solid rgba(202, 194, 77, 0.25);
}

/* Product Cards */
.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.product-img-wrapper {
  background-color: rgba(212, 217, 149, 0.2);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 220px;
}
.product-img-wrapper img {
  max-height: 180px;
  object-fit: contain;
  transition: var(--transition-smooth);
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}
.product-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  min-height: 2.8rem;
  line-height: 1.4;
}
.product-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 4px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background-color: var(--bg-light);
}
.price-col {
  padding: 0.5rem 0.25rem;
}
.price-col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.price-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.price-col.highlight-dp {
  background-color: rgba(117, 151, 51, 0.08);
}
.price-col.highlight-dp .price-val {
  color: var(--secondary);
}

.product-action-btn {
  width: 100%;
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product-action-btn i {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.product-action-btn:hover {
  background-color: #25d366; /* WhatsApp Green */
  color: var(--text-light);
  transform: translateY(-1px);
}

/* Search and Filters */
.product-controls {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.search-box {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  background-color: var(--bg-card);
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.search-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(117, 151, 51, 0.15);
}
.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--text-muted);
}
.filter-tab:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.filter-tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .product-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .search-box {
    max-width: 100%;
  }
  .filter-tabs {
    justify-content: center;
  }
}

/* Why Choose Us & Key Metrics */
.why-us-grid {
  align-items: center;
}
.why-us-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-card);
}
.why-us-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.why-us-list {
  list-style: none;
}
.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.why-us-icon {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  background-color: rgba(117, 151, 51, 0.1);
  padding: 0.35rem;
  border-radius: 50%;
  display: flex;
}
.why-us-item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.why-us-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Quote/Founder Section */
.founder-banner {
  background: linear-gradient(135deg, rgba(44, 80, 19, 0.05), rgba(212, 217, 149, 0.2));
  border-radius: 24px;
  padding: 4rem;
  border: 1px solid var(--border-color);
  align-items: center;
}
.founder-photo {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border: 6px solid var(--bg-card);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

/* Founder Portrait Frame (About page) */
.founder-frame {
  background-color: var(--bg-card);
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  max-width: 360px; /* Limit width on desktop and mobile viewports */
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.founder-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid var(--sage);
  pointer-events: none;
  margin: 6px;
}
.founder-frame img {
  border-radius: 12px;
  width: 100%;
  height: 420px; /* Locked height ratio to prevent extremely tall rendering */
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
}
.founder-quote::before {
  content: '“';
  font-size: 4rem;
  position: absolute;
  top: -2.5rem;
  left: -2rem;
  color: rgba(117, 151, 51, 0.2);
  font-family: Georgia, serif;
}
.founder-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}
.founder-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .founder-banner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.values-grid .value-card {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
}
.value-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}
/* Alternate colored wave blobs in card corners */
.value-card:nth-child(1)::after {
  background-color: var(--secondary);
  top: -60px;
  right: -60px;
}
.value-card:nth-child(2)::after {
  background-color: var(--primary);
  bottom: -60px;
  right: -60px;
}
.value-card:nth-child(3)::after {
  background-color: var(--accent);
  top: -60px;
  right: -60px;
}
.value-card:nth-child(4)::after {
  background-color: var(--sage);
  bottom: -60px;
  left: -60px;
}
.value-card:nth-child(5)::after {
  background-color: var(--secondary);
  top: -60px;
  left: -60px;
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.value-icon-badge {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  position: relative;
  z-index: 2;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Custom badge themes for each card */
.value-card:nth-child(1) .value-icon-badge {
  background-color: rgba(117, 151, 51, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(117, 151, 51, 0.25);
}
.value-card:nth-child(2) .value-icon-badge {
  background-color: rgba(44, 80, 19, 0.1);
  color: var(--primary);
  border: 1px solid rgba(44, 80, 19, 0.25);
}
.value-card:nth-child(3) .value-icon-badge {
  background-color: rgba(202, 194, 77, 0.1);
  color: #a39b2e;
  border: 1px solid rgba(202, 194, 77, 0.25);
}
.value-card:nth-child(4) .value-icon-badge {
  background-color: rgba(212, 217, 149, 0.2);
  color: #757d2a;
  border: 1px solid rgba(212, 217, 149, 0.4);
}
.value-card:nth-child(5) .value-icon-badge {
  background-color: rgba(117, 151, 51, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(117, 151, 51, 0.25);
}

/* Timeline/Experience List */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--sage);
  margin: 2rem 0;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 2px solid var(--bg-light);
}
.timeline-company {
  font-weight: 700;
  color: var(--primary);
}
.timeline-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Blog Styling & 2-Column Layout */
.blog-layout-container {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .blog-layout-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Left Column - Blog Cards */
.blog-posts-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(117, 151, 51, 0.2);
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

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

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.03);
}

.blog-category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: #ff5e3a;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 94, 58, 0.3);
}

.blog-posts-col article:nth-child(1) .blog-category-badge {
  background-color: var(--secondary);
  box-shadow: 0 4px 10px rgba(117, 151, 51, 0.3);
}
.blog-posts-col article:nth-child(2) .blog-category-badge {
  background-color: var(--primary);
  box-shadow: 0 4px 10px rgba(44, 80, 19, 0.3);
}
.blog-posts-col article:nth-child(3) .blog-category-badge {
  background-color: #e59f12;
  box-shadow: 0 4px 10px rgba(229, 159, 18, 0.3);
}
.blog-posts-col article:nth-child(4) .blog-category-badge {
  background-color: #0ea5e9;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.blog-card-content {
  padding: 2.25rem;
  box-sizing: border-box;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta i {
  color: var(--secondary);
}

.blog-card h3 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

.blog-card h3 a:hover {
  color: var(--secondary);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.blog-readmore-link i {
  transition: transform 0.2s ease;
}

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

.blog-readmore-link:hover i {
  transform: translateX(5px);
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--sage);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  margin-top: 0;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

/* Recent Posts widget */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.recent-post-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.recent-post-info h5 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
  transition: var(--transition-base);
}

.recent-post-item:hover h5 {
  color: var(--secondary);
}

.recent-post-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Categories widget */
.widget-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-link {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-base);
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-color);
}

.category-link:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.category-link span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Tags widget */
.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  font-size: 0.76rem;
  font-weight: 500;
  background-color: rgba(212, 217, 149, 0.15);
  color: #757d2a;
  border: 1px solid rgba(212, 217, 149, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-base);
}

.tag-pill:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
}

/* Article Reader Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 40, 11, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background-color: var(--bg-card);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}
.modal-close:hover {
  background-color: var(--sage);
  color: var(--primary);
}
.modal-article h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.modal-article .article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.modal-article .article-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
}
.modal-article .article-body p {
  margin-bottom: 1.5rem;
}
.modal-article .article-body h3 {
  margin: 2rem 0 1rem 0;
  font-family: var(--font-sans);
  font-weight: 600;
}
.modal-article .article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.modal-article .article-body li {
  margin-bottom: 0.5rem;
}

/* Contact Page Form & Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 2.5rem;
  width: 100%;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-info-panel {
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-info-panel h3 {
  color: var(--text-light);
  font-size: 1.75rem;
  word-break: break-word;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 0;
  width: 100%;
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.2rem;
  min-width: 24px;
  flex-shrink: 0;
}
.contact-item-text {
  flex: 1;
  min-width: 0;
}
.contact-item-text h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 1.05rem;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-item-text a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-form-panel {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-title {
  margin-bottom: 2rem;
}
.form-title h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.form-title p {
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  background-color: var(--bg-light);
  transition: var(--transition-base);
  color: var(--text-dark);
}
.form-control:focus {
  border-color: var(--secondary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(117, 151, 51, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-submit-btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 8px;
  padding: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 6px rgba(44, 80, 19, 0.15);
}
.form-submit-btn:hover {
  background-color: var(--secondary);
  box-shadow: 0 6px 12px rgba(117, 151, 51, 0.25);
  transform: translateY(-2px);
}

.map-wrapper {
  margin-top: 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 400px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer Section - Original Dark Forest Theme */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo .logo-img {
  border-color: rgba(255, 255, 255, 0.15);
}
.footer-logo .brand-name {
  color: var(--text-light);
}
.footer-logo .brand-tagline {
  color: var(--accent);
}
.footer-brand p {
  line-height: 1.6;
}
.footer-links h4, .footer-contact h4 {
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}
.footer-links-list a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item a,
.footer-contact-item span {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}
.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-info-panel {
    padding: 2.25rem 1.5rem;
    gap: 1.75rem;
    border-radius: 12px;
  }
  .contact-info-panel h3 {
    font-size: 1.4rem;
  }
  .contact-form-panel {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }
  .form-title {
    margin-bottom: 1.5rem;
  }
  .form-title h3 {
    font-size: 1.4rem;
  }
  .contact-item-text p {
    font-size: 0.95rem;
  }
  .map-wrapper {
    margin-top: 2.5rem;
    height: 300px;
    border-radius: 12px;
  }
  .footer {
    padding: 4rem 0 2rem 0;
  }
  .footer-top {
    gap: 2.25rem;
    margin-bottom: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-info-panel {
    padding: 1.75rem 1.25rem;
  }
  .contact-form-panel {
    padding: 1.75rem 1rem;
  }
  .footer-contact-item {
    padding: 0.55rem 0.75rem;
  }
}

/* Floating Actions */
.whatsapp-floating {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  z-index: 1500;
  transition: var(--transition-base);
}
.whatsapp-floating:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-floating .ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-ripple 2s infinite ease-in-out;
  pointer-events: none;
}

@media (max-width: 768px) {
  .whatsapp-floating {
    bottom: 1.5rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
  }
  .scroll-to-top-btn {
    bottom: 5.5rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}
@keyframes whatsapp-ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Internal Banner Headers for Inner Pages */
.inner-hero {
  background: linear-gradient(135deg, rgba(44, 80, 19, 0.92), rgba(27, 47, 12, 0.95));
  color: var(--text-light);
  padding: 2.75rem 0;
  text-align: center;
}
.inner-hero h1 {
  color: var(--text-light);
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}
.inner-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4' width='20' height='4'%3E%3Cpath d='M0,2 Q5,0 10,2 T20,2' fill='none' stroke='%23cac24d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  margin: 0.75rem auto 0 auto;
}
.inner-hero p {
  color: var(--sage);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* Form Success State Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.alert-success {
  background-color: rgba(117, 151, 51, 0.12);
  color: var(--primary);
  border: 1px solid rgba(117, 151, 51, 0.3);
}

/* Animation utilities for scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 7.5rem; /* Sits perfectly above the WhatsApp floating button */
  right: 2.5rem;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 1499;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  background-color: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: scale(1.1);
}

/* Testimonials & Voices of Healing Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}
.video-card {
  background-color: var(--bg-card);
  border: none; /* Removed borders to eliminate vertical separator lines */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 0 !important; /* Overrides default card padding to stretch video full-width */
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.video-player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* Portrait ratio for mobile client videos */
  background-color: #000000;
  overflow: hidden;
}
.video-player-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Set to contain to prevent blurry scaling/cropping and preserve original resolution */
  display: block;
}
.video-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.video-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 1px;
}
.video-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}
.video-client-info {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-client-info i {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  .video-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Legal & Policy Pages (Privacy Policy, Terms & Conditions)
   ========================================================================== */
.legal-section {
  padding: 4.5rem 0 6rem 0;
  background-color: #fbfbfa;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 3.5rem 4rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px -5px rgba(44, 80, 19, 0.06);
  box-sizing: border-box;
  width: 100%;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(117, 151, 51, 0.12);
  color: var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-block {
  margin-bottom: 2.25rem;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-sans) !important;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(117, 151, 51, 0.18);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.35;
  word-break: break-word;
}

.legal-block h2::after {
  display: none;
}

.legal-block h2 i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.legal-block p {
  color: #33442a;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  word-break: break-word;
}

.legal-block ul {
  margin: 0.75rem 0 1.25rem 1.25rem;
  padding-left: 0;
  color: #33442a;
}

.legal-block ul li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
  font-size: 0.95rem;
  padding-left: 0.25rem;
  word-break: break-word;
}

.legal-block ul li strong {
  color: var(--primary);
}

.legal-notice-box {
  background: rgba(117, 151, 51, 0.08);
  border-left: 4px solid var(--secondary);
  padding: 1.15rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2b3d22;
  word-break: break-word;
}

.legal-notice-box strong {
  color: var(--primary);
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
}

.legal-contact-card {
  background: #fbfbfa;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition-base);
  box-sizing: border-box;
}

.legal-contact-card:hover {
  border-color: var(--secondary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.legal-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background-color: rgba(117, 151, 51, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.legal-contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40px;
}

.legal-contact-details h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.25rem 0;
  line-height: 1.25;
}

.legal-contact-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
  word-break: break-word;
}

.legal-contact-details a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-contact-details a:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 2.5rem 0 3.5rem 0;
  }
  .legal-card {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }
  .legal-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .legal-block {
    margin-bottom: 1.75rem;
  }
  .legal-block h2 {
    font-size: 1.15rem;
  }
  .legal-block p,
  .legal-block ul li {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .legal-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legal-card {
    padding: 1.5rem 1rem;
  }
}
