/* ===== ABOUT ===== */
.about {
  background: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-medium), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.about-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 280px;
  z-index: 2;
  box-shadow: var(--card-shadow-small);
}

.about-card h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.about-card h4 i {
  margin-right: 0.5rem;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature i {
  color: var(--accent);
  font-size: 1.1rem;
}

.about-feature span {
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== MVO (Mission, Vision, Objective) ===== */
.mission-section {
  background: var(--bg);
}

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

.mvo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvo-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-strong);
}

.mvo-card:first-child {
  grid-column: auto;
}

.mvo-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.mvo-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  background: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--accent-glow),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-strong);
}

.service-card:first-child {
  grid-column: 1 / -1;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-list li i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--primary);
}

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

.why-card {
  text-align: left;
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-strong);
}

.why-card:first-child {
  grid-column: 1 / -1;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--primary-light),
    var(--accent)
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 220px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--accent-bg);
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.1);
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(var(--accent-rgb), 0.2);
  animation: spin 20s linear infinite;
}

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

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}
