/* ========================================
   HOME 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;
  overflow-x: hidden;
  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-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--primary-start);
  color: var(--primary-start);
  background: rgba(234, 133, 52, 0.06);
  transform: translateY(-3px);
}

.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
   ======================================== */
.hero {
  padding: 72px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 133, 52, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero .badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-start);
  background: rgba(234, 133, 52, 0.08);
  padding: 8px 24px;
  border-radius: 60px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 820px;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero h1 .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 640px;
  margin: 16px auto 36px;
  font-weight: 400;
}

.hero .cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.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;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 40px 0 50px;
}

.services-wrapper {
  background: var(--bg-white);
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

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

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

.service-card 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;
}

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

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

/* ========================================
   WHY CHOOSE - ORANGE/RED GRADIENT ICONS
   ======================================== */
.why {
  padding: 40px 0 50px;
}

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

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

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

.why-item .why-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(234, 133, 52, 0.25);
}

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

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

/* ========================================
   STATS - ORANGE/RED GRADIENT
   ======================================== */
.stats {
  padding: 40px 0 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--primary-gradient);
  padding: 50px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 4px;
  font-size: 1rem;
}

.stat-item i {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 8px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(50% - 15px);
  background: var(--bg-white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

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

.testimonial-card .stars {
  color: #f59e0b;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 450;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-card .quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary-start);
  opacity: 0.25;
  margin-right: 4px;
}

.testimonial-card .quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-start);
  opacity: 0.25;
  margin-left: 4px;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author .role {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--primary-gradient);
  width: 28px;
  border-radius: 20px;
}

/* ========================================
   CTA - ORANGE/RED GRADIENT
   ======================================== */
.cta-final {
  padding: 60px 0 30px;
}

.cta-box {
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.cta-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 640px;
  position: relative;
}

.cta-box .btn-primary {
  background: white;
  color: var(--primary-start);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  padding: 16px 48px;
  font-weight: 700;
  position: relative;
}

.cta-box .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

/* ========================================
   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) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

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

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

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-track {
    gap: 20px;
  }

  .services-wrapper {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

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

  .testimonial-card {
    padding: 24px 20px;
  }

  .services-wrapper {
    padding: 30px 16px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }
}