:root {
  --primary-color: #C5A572;
  --primary-dark: #b49059;
  --dark-bg: #111111;
  --light-text: #ffffff;
  --gradient-primary: linear-gradient(135deg, hsl(44 96% 70%), hsl(44 96% 60%));
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--light-text);
  background: var(--dark-bg);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1, h2, h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 700;
}

.about-section {
  position: relative;
  padding: 6rem 2rem 4rem;
  border-top: 1px solid rgba(197, 165, 114, 0.1);
  overflow: hidden;
  background: var(--dark-bg);
}

.about-section:nth-child(even) {
  background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.3s;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero-title img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.hero-title h1, .hero-title h2 {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-weight: 700;
}

.background-heading {
  position: absolute;
  font-size: 8vw;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: fadeInLarge 1s ease forwards;
}

 p, ul {
  animation: fadeIn 2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.3s;
  color: var(--light-text);
}
.background-heading.left {
  top: 2rem;
  left: 2rem;
  text-align: left;
  animation-delay: 0.2s;
}

.background-heading.right {
  top: 2rem;
  right: 2rem;
  text-align: right;
  animation-delay: 0.5s;
}

.about-hero {
  text-align: center;
  background: linear-gradient(135deg, #111 0%, #000 100%);
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.about-mission, .about-process, .about-values {
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.steps {
  list-style: none;
  padding: 0;
}

.steps li {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(197, 165, 114, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-text);
  transition: all 0.3s ease;
}

.steps li:hover {
  background: rgba(197, 165, 114, 0.08);
  transform: translateX(5px);
}

.steps li strong {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.value-grid div {
  position: relative;
  background: rgba(197, 165, 114, 0.05);
  padding: 2rem;
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.6s ease-in-out;
  margin-bottom: 1rem;
  border: 1px solid rgba(197, 165, 114, 0.1);
}

/* The animated left accent bar */
.value-grid div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 80%;
  width: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transform: translateY(10px);
  transition: 
    opacity 0.4s ease,
    transform 0.6s ease-in-out;
  border-radius: 2px;
}

/* Animate it in on hover */
.value-grid div:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.value-grid div:hover {
  background: rgba(197, 165, 114, 0.08);
  border-color: rgba(197, 165, 114, 0.2);
}

.value-grid h4,
.value-grid p {
  position: relative;
  z-index: 1;
}

.value-grid h4 {
  font-size: 1.25rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.6s ease;
  position: relative;
  font-weight: 600;
}

.value-grid div:hover h4 {
  transform: scale(1.05);
}

.cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
  border-top: 1px solid rgba(197, 165, 114, 0.1);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta h2, .cta h2.gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-button {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInLarge {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.15;
    transform: translateY(0);
  }
}

@keyframes fadeInMobile {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.25;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem 1rem !important;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .background-heading {
    font-size: 14vw;
    opacity: 0.08;
  }

  .hero-title img {
    width: 60px;
  }

  .hero-title h1, .hero-title h2 {
    font-size: 2rem;
  }

  /* Hero Section Mobile Styles */
  .hero-section {
    min-height: 60vh;
    padding: 1rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .cta-button {
    min-width: 200px;
    width: 100%;
    max-width: 300px;
  }
  
}
