/* ================= CSS VARIABLES ================= */
:root {
  --color-primary: #5c6b3e;
  --color-primary-dark: #4a5a2f;
  --color-primary-light: #7a8b5c;
  --color-accent: #8b9a6d;
  --color-bg: #f8f7f4;
  --color-bg-dark: #3d3d2a;
  --color-bg-darker: #2d2d1f;
  --color-text: #2c2c2c;
  --color-text-light: #f8f7f4;
  --color-text-muted: #6b6b6b;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.1);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

/* ================= LAYOUT ================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.bg-accent {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

/* ================= TYPOGRAPHY ================= */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.bg-dark .section-label,
.bg-accent .section-label {
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-title.light {
  color: var(--color-text-light);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-desc.light {
  color: rgba(248, 247, 244, 0.8);
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
  background-color: white;
  color: var(--color-primary-dark);
}

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

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px; /* Slightly more space for bigger logo */
  text-decoration: none;
  padding: 6px 0;
}

.logo-img {
  height: 52px; /* Up from 44px */
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem; /* Slightly bigger to match */
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  padding-left: 18px; /* Match the gap */
  border-left: 2px solid rgba(255,255,255,0.3); /* Slightly thicker divider */
}

/* Scrolled state - smaller but still proportional */
.header.scrolled .logo-img {
  height: 44px;
}

.header.scrolled .logo-text {
  font-size: 1.4rem;
  padding-left: 16px;
  color: var(--color-text);
  text-shadow: none;
  border-left-color: var(--color-border);
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 44px;
  }
  
  .logo-text {
    font-size: 1.3rem;
    padding-left: 14px;
  }
  
  .header.scrolled .logo-img {
    height: 38px;
  }
}

.header.scrolled .logo-img {
  height: 36px;
}

.header.scrolled .logo-text {
  color: var(--color-text);
}

.header {
  padding: 16px 0;
}

.header.scrolled {
  padding: 12px 0;
}

@media (max-width: 768px) {
  .logo-img {
    height: 36px;
  }
  .logo-text {
    font-size: 1.15rem;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.header.scrolled .desktop-nav a {
  color: var(--color-text);
}

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

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

.desktop-nav a.active {
  color: white;
}

.header.scrolled .desktop-nav a.active {
  color: var(--color-primary);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition-base);
  border-radius: 2px;
}

.header.scrolled .menu-btn span {
  background: var(--color-text);
}

/* ================= MOBILE MENU ================= */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--color-bg-dark);
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  overflow-y: auto;
}

.side-menu.open {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-base);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: auto;
}

.menu-links a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: white;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.menu-links a:hover,
.menu-links a.active {
  color: var(--color-accent);
  padding-left: 16px;
}

.menu-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.menu-footer p {
  margin-bottom: 8px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 1999;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(45, 45, 31, 0.7) 0%, 
    rgba(45, 45, 31, 0.5) 50%,
    rgba(45, 45, 31, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero-badge {
    margin-top: 100px;
    margin-bottom: 20px;
  }
}


.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-credibility {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cred-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.scroll-indicator {
  display: none; /* Hidden by default (mobile) */
}

@media (min-width: 769px) {
  .scroll-indicator {
    display: flex; /* Show on desktop */
    position: absolute;
    bottom: 40px;
    left: 10%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ================= PAGE HERO ================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 60px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: white;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.125rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= SERVICES ================= */
.services {
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

.service-content {
  padding: 28px;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.service-content p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

.service-link:hover {
  gap: 10px;
  color: var(--color-primary-dark);
}

.service-link svg {
  transition: transform var(--transition-base);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ================= SERVICES DETAIL PAGE ================= */
.services-detail {
  background: white;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 100px;
  align-items: center;
}

.service-detail-block.reverse {
  direction: rtl;
}

.service-detail-block.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(92, 107, 62, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
}

.service-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-features {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.feature p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ================= PROCESS TIMELINE ================= */
.process-section {
  position: relative;
  overflow: hidden;
}

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

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    var(--color-accent) 10%, 
    var(--color-accent) 90%, 
    transparent 100%
  );
}

.timeline.compact .timeline-line {
  left: 20px;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 48px;
}

.timeline.compact .timeline-item {
  padding-left: 64px;
  padding-bottom: 32px;
}

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

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.6;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg-dark);
  box-shadow: 0 0 0 3px var(--color-accent);
}

.timeline.compact .timeline-dot {
  width: 12px;
  height: 12px;
  border-width: 2px;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-base);
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 154, 109, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.timeline.compact .timeline-content {
  padding: 20px;
}

.timeline.compact .timeline-content h3 {
  font-size: 1.125rem;
}

/* ================= UPDATES ================= */
.updates {
  background: var(--color-bg);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.update-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.update-image {
  height: 220px;
  overflow: hidden;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.update-content {
  padding: 24px;
}

.update-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.update-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.update-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================= CONTACT ================= */

/* ================= CONTACT PAGE CSS ================= */

/* Contact Info Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* THIS WAS MISSING - Icon container */
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(92, 107, 62, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

/* Force SVG to stay small */
.contact-card-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* WhatsApp card styling */
.whatsapp-card {
  background: #f0fdf4;
  border-color: #86efac;
}

.whatsapp-card .contact-card-icon {
  background: #25d366;
  color: white;
}

/* Contact Card Typography */
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.contact-card-main {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.5;
}

.contact-card-sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

.contact-card-link:hover {
  gap: 10px;
}

/* Form & Map Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-intro {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

/* Map container */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Office hours */
.office-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
}

.office-hours h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.office-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.office-hours li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-question:hover {
  background: var(--color-bg);
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding-right: 16px;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
}

.contact-item a:hover {
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--color-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: transparent;
  transition: var(--transition-base);
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(92, 107, 62, 0.1);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-base);
  background: white;
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 500;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select:invalid {
  color: var(--color-text-muted);
}

.select-label {
  top: -8px !important;
  font-size: 0.75rem !important;
  color: var(--color-primary) !important;
  font-weight: 500 !important;
}

/* ================= ABOUT PAGE ================= */
.about-section {
  background: white;
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--color-primary);
  color: white;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-content .lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

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

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(139, 154, 109, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.value-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================= CTA SECTION ================= */
.cta-section {
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--color-bg-darker);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: white;
}

/* ================= ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .menu-btn {
    display: none;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail-block {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: start;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
  }
  
  .timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
    justify-content: center;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
  }
  
  .timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:hover {
    transform: translateX(-8px);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
  
  .section-padding {
    padding: 120px 0;
  }
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .timeline-item {
    padding-left: 48px;
  }
  
  .timeline-line {
    left: 15px;
  }
}

/* ================= NEW COMPONENTS ================= */

/* Catalog/Filters */
.catalog-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  border: 1.5px solid var(--color-border);
  background: white;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Livestock Cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.livestock-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.livestock-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.livestock-card.hidden {
  display: none;
}

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

.livestock-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.livestock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #22c55e;
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.livestock-badge[data-status="coming"] {
  background: #f59e0b;
}

.livestock-info {
  padding: 28px;
}

.livestock-info h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.livestock-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.livestock-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
}

.spec {
  text-align: center;
}

.spec span {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.spec {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.9375rem;
  width: 100%;
  justify-content: center;
}

/* Testimonials (for future use) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-base);
}

.contact-method:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.method-icon {
  font-size: 2rem;
}

.contact-method span {
  font-weight: 600;
  color: white;
}

.contact-method.whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.contact-method.whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
}

/* Counter Animation Stats */
.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

/* Video Section */
.video-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.video-play-btn svg {
  width: 40px;
  height: 40px;
  fill: var(--color-primary);
  margin-left: 4px;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  z-index: 1;
}

.video-overlay h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .livestock-specs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= LANGUAGE SWITCHER ================= */

.language-switcher {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled .language-switcher {
  border-left-color: var(--color-border);
}

.lang-btn {
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header.scrolled .lang-btn {
  color: var(--color-text-muted);
}

.lang-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .lang-btn:hover {
  color: var(--color-text);
  background: var(--color-bg);
}

.lang-btn.active {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .lang-btn.active {
  color: var(--color-primary);
  background: rgba(92, 107, 62, 0.1);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher > span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.mobile-lang-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-lang-switcher .lang-btn {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  font-size: 0.875rem;
  text-transform: none;
}

.mobile-lang-switcher .lang-btn.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(139, 154, 109, 0.1);
}

/* RTL Support for Turkish */
[lang="tr"] .service-detail-block.reverse {
  direction: rtl;
}

[lang="tr"] .service-detail-block.reverse > * {
  direction: ltr;
}

/* Show language switcher on desktop */
@media (min-width: 1024px) {
  .language-switcher {
    display: flex;
  }
}

/* ================= ABOUT PAGE SPECIFIC STYLES ================= */

.about-hero .page-hero-bg img {
  object-position: center 30%;
}

/* Story Section */
.story-section {
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--color-primary);
  color: white;
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.exp-text {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.4;
}

.story-content .section-label {
  margin-bottom: 16px;
}

.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

.story-content .lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.story-stats .stat {
  text-align: center;
}

.story-stats .stat-number {
  display: inline;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.story-stats .stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Mission Section */
.mission-section {
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.mission-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  opacity: 0.85;
}

.mission-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.point-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.mission-point span {
  opacity: 0.9;
}

.mission-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.value-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 24px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition-base);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.team-image {
  margin-bottom: 20px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  color: var(--color-accent);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.partner-logo {
  background: var(--color-bg);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.partner-logo:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Responsive */
@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-content {
    order: 1;
  }
  
  .mission-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .story-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .experience-badge {
    bottom: 16px;
    right: 16px;
    padding: 20px 24px;
  }
  
  .exp-number {
    font-size: 2.5rem;
  }
}

