/* ============================================================
   SUVED CREATIONS - About Page Styles
   ============================================================ */

/* --- About Story --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.about-story-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

.about-story-content h2 {
  margin-bottom: 25px;
}

.about-story-content p {
  margin-bottom: 15px;
}

/* --- Mission Vision --- */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: clamp(30px, 4vw, 60px);
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.mv-card-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent);
}

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

.mv-card h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.mv-card p {
  font-size: 0.95rem;
}

/* --- Founder Section --- */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.founder-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-light), transparent);
}

.founder-content h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 8px;
}

.founder-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 25px;
}

.founder-content p {
  margin-bottom: 15px;
}

.founder-contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  transition: color 0.3s ease;
}

.founder-contact a:hover {
  color: var(--accent-dark);
}

.founder-contact svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* --- Why Choose Us --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg-primary);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.why-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.why-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.85rem;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-year {
  width: 50%;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  padding-top: 10px;
}

.timeline-content {
  width: 50%;
}

.timeline-content h4 {
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 2;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-image {
    height: 400px;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    height: 400px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
    padding-left: 50px;
    gap: 10px;
  }

  .timeline-year,
  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }
}
