/* =====================
   WHY-US — Info Cards
===================== */
.why-us {
  padding: 20px 0 30px 0;
  margin: 0;
}

.why-us h2 {
  text-align: center;
  font-size: var(--fs-2xl);
  margin-bottom: 30px;
}

.why-us .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-us .service-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.why-us .icon-circle-red {
  width: 55px;
  height: 55px;
}

.why-us .icon-circle-red i {
  font-size: 22px;
}

.why-us .service-box h3 {
  margin: 14px 0 10px;
  font-size: 1.05rem;
}

.why-us .service-box p {
  color: #555;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Boje ikonica — WHY-US */
.why-us .service-box:nth-child(1) .icon-circle-red { background: #ff4d4d; }
.why-us .service-box:nth-child(2) .icon-circle-red { background: #f7931a; }
.why-us .service-box:nth-child(3) .icon-circle-red { background: #25D366; }
.why-us .service-box:nth-child(4) .icon-circle-red { background: #4285F4; }

/* Mobilni: 1 kolona */
@media (max-width: 600px) {
  .why-us .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   TIMELINE — Kako naručiti
===================== */
.timeline-section {
  background: linear-gradient(180deg, #f0f4f8 0%, #fff 100%);
  padding: 40px 20px;
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.timeline-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.timeline-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step .icon-circle-red {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-step .step-num {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.timeline-step .step-content {
  padding-top: 8px;
}

.timeline-step .step-content h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.timeline-step .step-content p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Boje brojeva — TIMELINE (ispravljen nth-child da počinje od 1) */
.timeline-step:nth-child(1) .icon-circle-red { background: #4285F4; }
.timeline-step:nth-child(2) .icon-circle-red { background: #f7931a; }
.timeline-step:nth-child(3) .icon-circle-red { background: #25D366; }
.timeline-step:nth-child(4) .icon-circle-red { background: #e63946; }

/* =====================
   SERVICES GRID — Globalno (za pastel kartice)
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Pastelne boje */
.service-card.pastel-blue   { background-color: #e8f4fd; }
.service-card.pastel-green  { background-color: #f0f7ee; }
.service-card.pastel-mint   { background-color: #e6f7f3; }
.service-card.pastel-orange { background-color: #fef3e8; }
.service-card.pastel-rose   { background-color: #fdf2f4; }
.service-card.pastel-wine   { background-color: #f5e6e8; }
.service-card.pastel-lavender { background-color: #f3f0f7; }

/* Ikone na pastelnoj pozadini */
.service-card.pastel-blue .service-icon i   { color: #2563eb; }
.service-card.pastel-green .service-icon i  { color: #16a34a; }
.service-card.pastel-mint .service-icon i   { color: #059669; }
.service-card.pastel-orange .service-icon i { color: #d97706; }
.service-card.pastel-rose .service-icon i   { color: #db2777; }
.service-card.pastel-wine .service-icon i   { color: #9f1239; }
.service-card.pastel-lavender .service-icon i { color: #7c3aed; }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: #d97706;
  text-decoration: none;
  font-weight: 500;
}

.service-link:hover {
  text-decoration: underline;
}

/* Linkovi unutar kartica */
.service-card.pastel-blue .card-link   { color: #2563eb; }
.service-card.pastel-green .card-link  { color: #16a34a; }
.service-card.pastel-wine .card-link   { color: #9f1239; }
.service-card.pastel-orange .card-link { color: #d97706; }
.service-card.pastel-rose .card-link   { color: #db2777; }
.service-card.pastel-lavender .card-link { color: #7c3aed; }

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* =====================
   PROCESS SECTION
===================== */
.process-section {
  padding: 5rem 0;
  background-color: #fafafa;
}

.features-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Horizontalna timeline */
.process-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.step-card a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}

/* Konektor */
.step-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::after {
  content: '→';
  font-size: 1.5rem;
  color: #ccc;
}

/* Boje po koracima */
.step-card.pastel-blue .step-badge   { color: #2563eb; border-color: #2563eb; }
.step-card.pastel-blue .step-icon i  { color: #2563eb; }

.step-card.pastel-green .step-badge  { color: #16a34a; border-color: #16a34a; }
.step-card.pastel-green .step-icon i { color: #16a34a; }

.step-card.pastel-wine .step-badge   { color: #9f1239; border-color: #9f1239; }
.step-card.pastel-wine .step-icon i  { color: #9f1239; }

.step-card.pastel-orange .step-badge { color: #d97706; border-color: #d97706; }
.step-card.pastel-orange .step-icon i { color: #d97706; }

/* =====================
   FEATURES GRID
===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.feature-card a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}

/* Boje ikona */
.feature-card.pastel-blue .feature-icon i   { color: #2563eb; }
.feature-card.pastel-green .feature-icon i  { color: #16a34a; }
.feature-card.pastel-rose .feature-icon i   { color: #db2777; }
.feature-card.pastel-orange .feature-icon i { color: #d97706; }
.feature-card.pastel-lavender .feature-icon i { color: #7c3aed; }
.feature-card.pastel-mint .feature-icon i   { color: #059669; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .step-connector {
    width: auto;
    height: 30px;
  }
  
  .step-connector::after {
    content: '↓';
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}