/* ========================================
   ABOUT PAGE - KRISTAPAY THEME (ORANGE/RED ONLY)
   NO PURPLE COLORS - STRICTLY ORANGE/RED THEME
   ======================================== */

/* ========================================
   ROOT VARIABLES - ORANGE/RED THEME
   ======================================== */
:root {
  --primary-start: #EA8534;
  --primary-end: #A0111A;
  --primary-gradient: linear-gradient(135deg, #EA8534, #A0111A);
  --primary-gradient-hover: linear-gradient(135deg, #A0111A, #EA8534);
  
  --text-dark: #0a0a0a;
  --text-gray: #3d3d3d;
  --text-light: #6b6b6b;
  --bg-light: #f8f6fa;
  --bg-white: #ffffff;
  --border-light: #e8e4ed;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
    scrollbar-gutter:stable;
}

body{
    margin:0;
    overflow-y:scroll;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 90px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   BUTTONS - ORANGE/RED THEME
   ======================================== */
.btn-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(234, 133, 52, 0.25);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(160, 17, 26, 0.30);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary-start);
  color: var(--primary-start);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 28px rgba(234, 133, 52, 0.30);
  transform: translateY(-3px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.about-hero {
  position: relative;
  min-height: 60vh;
  background: url("/images/about-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(234, 133, 52, 0.82),
    rgba(160, 17, 26, 0.65)
  );
}

.hero-content {
  position: relative;
  color: #FFFFFF;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
  padding: 60px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.page-header h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--text-gray);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 8px auto 0;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-header .label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-start);
  background: rgba(234, 133, 52, 0.08);
  padding: 6px 20px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-sub {
  color: var(--text-gray);
  max-width: 560px;
  font-size: 1.1rem;
  margin-top: 6px;
}

/* ========================================
   ABOUT INTRO - ORANGE/RED GRADIENT
   ======================================== */
.about-intro {
  padding: 20px 0 50px;
}

.about-intro-content {
  background: var(--primary-gradient);
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-content::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-intro-content * {
  position: relative;
  z-index: 1;
}

.about-intro-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-intro-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

.about-intro-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.15);
}

/* ========================================
   COMPANY INFO CARDS
   ======================================== */
.company-info {
  padding: 30px 0 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-start);
  box-shadow: var(--shadow-lg);
}

.info-card i {
  font-size: 2.8rem;
  color: var(--primary-start);
  display: block;
  margin-bottom: 16px;
  background: rgba(234, 133, 52, 0.08);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   CORE VALUES
   ======================================== */
.core-values {
  padding: 30px 0 50px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin: 10px 0 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.core-values .container {
  padding: 0 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-item:hover {
  border-color: var(--primary-start);
  background: rgba(234, 133, 52, 0.03);
  transform: translateY(-4px);
}

.value-item i {
  font-size: 2.6rem;
  color: var(--primary-start);
  display: block;
  margin-bottom: 12px;
  background: rgba(234, 133, 52, 0.08);
  width: 68px;
  height: 68px;
  line-height: 68px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.value-item h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */
/* <!-- .team {
  padding: 40px 0 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--bg-white);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-start);
  box-shadow: var(--shadow-lg);
}

.team-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(234, 133, 52, 0.25);
}

.team-card h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.team-card .role {
  color: var(--primary-start);
  font-weight: 600;
  font-size: 0.9rem;
}

.team-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 6px;
} */

/* ========================================
   TIMELINE - ORANGE/RED GRADIENT
   ======================================== */
.timeline {
  padding: 40px 0 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  margin: 10px 0 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.timeline * {
  position: relative;
  z-index: 1;
}

.timeline .section-header .label {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.timeline .section-title {
  color: white;
}

.timeline .section-sub {
  color: rgba(255, 255, 255, 0.8);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.timeline-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.timeline-item .year {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  display: block;
}

.timeline-item .event {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 4px;
}

/* ========================================
   TRUST BADGE
   ======================================== */
.trust-badge {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0 10px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-badge i {
  color: var(--primary-start);
  margin-right: 8px;
}

.trust-badge span {
  display: flex;
  align-items: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .about-intro-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
  }

  .about-intro-icon {
    font-size: 5rem;
  }

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

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

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

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

@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .page-header h1 {
    font-size: 2.4rem;
  }

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

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

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

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

  .about-intro-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

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

  .trust-badge {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .about-intro-text h2 {
    font-size: 2rem;
  }
}