/* SINKHRON - About Page Styles */
/* ============================== */

/* Base colors from brand palette */
:root {
  --color-brightly-orange: #f43a09;
  --color-grandpa-orange: #ffb766;
  --color-grey-blue-green: #c2edda;
  --text-primary: #2c3e50;
}

/* About Hero Section */
.about-hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.05) 0%, rgba(255, 183, 102, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(244, 58, 9, 0.1), transparent 70%);
  pointer-events: none;
}

.about-hero h1 {
  font-family: 'Gilroy-Extrabold', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.about-hero .text-primary {
  color: var(--color-brightly-orange) !important;
}

.about-hero .lead {
  font-size: 1.3rem;
  color: rgba(44, 62, 80, 0.8);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Gilroy-Extrabold', sans-serif;
  font-size: 3rem;
  color: var(--color-brightly-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Gilroy-Medium', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Titles */
.section-title {
  font-family: 'Gilroy-Extrabold', sans-serif;
  font-size: 3.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title .text-primary {
  color: var(--color-brightly-orange) !important;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(44, 62, 80, 0.7);
  max-width: 900px;
  margin: 0 auto;
}

/* Company Story Section */
.company-story {
  padding: 80px 0;
  background: #ffffff;
}

.story-content {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text {
  position: relative;
}

.story-milestone {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.story-milestone::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 80px;
  bottom: -30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-brightly-orange), var(--color-grandpa-orange));
}

.story-milestone:last-child::before {
  display: none;
}

.milestone-year {
  font-family: 'Gilroy-Extrabold', sans-serif;
  font-size: 1.5rem;
  color: white;
  background: var(--color-brightly-orange);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.milestone-content h3 {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.milestone-content p {
  color: rgba(44, 62, 80, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Story Visual */
.story-visual {
  position: relative;
}

.achievement-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.achievement-card {
  background: linear-gradient(135deg, var(--color-grey-blue-green), rgba(194, 237, 218, 0.7));
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(244, 58, 9, 0.1);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(244, 58, 9, 0.15);
}

.achievement-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-brightly-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.achievement-card h4 {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.achievement-card p {
  color: rgba(44, 62, 80, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.02) 0%, rgba(255, 183, 102, 0.02) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 10px;
}

.value-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(244, 58, 9, 0.08);
  box-shadow: 0 5px 25px rgba(244, 58, 9, 0.05);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(244, 58, 9, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
}

.value-item h3 {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.value-item p {
  color: rgba(44, 62, 80, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Team Philosophy Section */
.team-philosophy {
  padding: 80px 0;
  background: white;
}

.team-advantages {
  margin-top: 30px;
}

.advantage-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.advantage-item i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.advantage-item span {
  font-family: 'Gilroy-Medium', sans-serif;
  color: var(--text-primary);
}

.expertise-areas h3 {
  font-family: 'Gilroy-Semibold', sans-serif;
  color: var(--text-primary);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.expertise-tag {
  background: linear-gradient(135deg, var(--color-grey-blue-green), rgba(194, 237, 218, 0.7));
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-family: 'Gilroy-Medium', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  border: 1px solid rgba(244, 58, 9, 0.1);
  transition: transform 0.2s ease;
}

.expertise-tag:hover {
  transform: scale(1.05);
}

/* Technology Section */
.technology-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.02) 0%, rgba(255, 183, 102, 0.02) 100%);
}

.tech-card {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(244, 58, 9, 0.08);
  box-shadow: 0 5px 15px rgba(244, 58, 9, 0.05);
  height: 100%;
  margin: 40px 10px
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(244, 58, 9, 0.2);
}

.tech-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 2.2rem;
}

.tech-card h4 {
  font-family: 'Gilroy-Semibold', sans-serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.tech-card p {
  color: rgba(44, 62, 80, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Call to Action Section */
.about-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), transparent 50%);
  animation: float 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.about-cta h2,
.about-cta .lead {
  color: white;
}

.about-cta .text-primary {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-buttons {
  margin-bottom: 0;
}

.about-cta .btn-primary {
  background: white !important;
  border: 2px solid white !important;
  color: var(--color-brightly-orange) !important;
  font-family: 'Gilroy-Semibold', sans-serif;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.about-cta .btn-primary:hover,
.about-cta .btn-primary:focus,
.about-cta .btn-primary:active {
  background: transparent !important;
  border-color: white !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-outline-primary {
  background: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  font-family: 'Gilroy-Semibold', sans-serif;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.about-cta .btn-outline-primary:hover,
.about-cta .btn-outline-primary:focus,
.about-cta .btn-outline-primary:active {
  background: white !important;
  border-color: white !important;
  color: var(--color-brightly-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
}

.trust-item i {
  font-size: 2rem;
  margin-bottom: 5px;
}

.trust-item i.text-primary {
  color: white !important;
}

.trust-item span {
  font-family: 'Gilroy-Medium', sans-serif;
  text-align: center;
  color: white;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .about-hero h1 {
    font-size: 3rem;
  }

  .story-content {
    gap: 60px;
  }

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

@media (max-width: 991.98px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 20px !important;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .company-story,
  .values-section,
  .team-philosophy,
  .technology-section,
  .about-cta {
    padding: 80px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .trust-indicators {
    gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px !important;
  }

  .milestone-year {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .milestone-content h3 {
    font-size: 1.2rem;
  }

  .about-cta {
    padding: 60px 0;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 30px;
  }
}