/* =====================
   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 */
.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(280px, 1fr));
  gap: 20px;
}

.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;
  }
}

/* =====================
   PASTEL SEKCIJE — Gradovi
===================== */
:root {
  --pastel-mint: #e6f7f3;
  --pastel-lavender: #f3f0f7;
  --pastel-cream: #fef9f0;
  --pastel-rose: #fdf2f4;
  --pastel-cyan: #e8f4fd;
  --pastel-blue: #e8f4fd;
  --pastel-green: #f0f7ee;
  --pastel-orange: #fef3e8;
  --pastel-wine: #f5e6e8;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --fs-2xl: 1.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
}

/* Sekcije sa pastel bojama */
section {
  padding: 50px 0;
  margin: 20px 0;
  border-radius: 16px;
}

section h2 {
  text-align: center;
  font-size: var(--fs-2xl);
  margin-bottom: 35px;
  color: var(--text-dark);
}

.why-online { background: var(--pastel-mint); border: 1px solid #d1eae4; }
.nostrification { background: var(--pastel-lavender); border: 1px solid #e0d8eb; }
.validity { background: var(--pastel-cream); border: 1px solid #f0e6d3; }
.local-specifics { background: var(--pastel-rose); border: 1px solid #f0d8e0; }
.how-online { background: var(--pastel-cyan); border: 1px solid #d0e4f5; }
.pricing-online { background: var(--pastel-blue); border: 1px solid #d0e4f5; }
.other-cities { background: var(--pastel-orange); border: 1px solid #f0e0d0; }

/* Kartice */
.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-circle-red {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-circle-red i {
  font-size: 22px;
  color: #fff;
}

.service-box h3 {
  margin: 14px 0 10px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.service-box p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Boje ikonica */
.why-online .service-box:nth-child(1) .icon-circle-red { background: #ff4d4d; }
.why-online .service-box:nth-child(2) .icon-circle-red { background: #f7931a; }
.why-online .service-box:nth-child(3) .icon-circle-red { background: #25D366; }
.why-online .service-box:nth-child(4) .icon-circle-red { background: #4285F4; }

/* Info box */
.info-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.info-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Koraci */
.steps-nostrification,
.steps-online {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.step {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover { transform: translateY(-3px); }

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Boje brojeva */
.nostrification .step:nth-child(1) .num { background: #4285F4; }
.nostrification .step:nth-child(2) .num { background: #f7931a; }
.nostrification .step:nth-child(3) .num { background: #25D366; }

.how-online .step:nth-child(1) .num { background: #4285F4; }
.how-online .step:nth-child(2) .num { background: #f7931a; }
.how-online .step:nth-child(3) .num { background: #25D366; }
.how-online .step:nth-child(4) .num { background: #e63946; }
.how-online .step:nth-child(5) .num { background: #7c3aed; }

/* Liste */
.institutions-list,
.cities-plain {
  list-style: none;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.institutions-list li,
.cities-plain li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.institutions-list li:last-child,
.cities-plain li:last-child { border-bottom: none; }

.institutions-list li i {
  color: #16a34a;
  margin-right: 10px;
}

/* Popularni prevodi */
.popular-local {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.popular-local article {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-local article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.popular-local h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.popular-local h4 i {
  margin-right: 8px;
  color: #db2777;
}

.popular-local p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.popular-local ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.popular-local ul li { margin-bottom: 6px; }

/* Tabela cenovnika */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.price-table thead {
  background: #2563eb;
  color: #fff;
}

.price-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-table tbody tr:hover { background: #f8fafc; }
.price-table tbody tr:last-child td { border-bottom: none; }

.price-table .highlight {
  background: #fef3e8;
  font-weight: 600;
}

.price-table .highlight td { color: #d97706; }

.delivery-note {
  background: #fff;
  padding: 18px 25px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  color: var(--text-muted);
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.delivery-note i {
  color: #2563eb;
  margin-right: 8px;
}

/* Other cities */
.other-cities p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.balkan-note {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
  border: 1px solid rgba(0,0,0,0.05);
}

.balkan-note a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.balkan-note a:hover { text-decoration: underline; }

.note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .services-grid,
  .steps-nostrification,
  .steps-online,
  .popular-local {
    grid-template-columns: 1fr;
  }

  .price-table {
    font-size: 0.85rem;
  }

  .price-table th,
  .price-table td {
    padding: 12px 15px;
  }

  section {
    padding: 30px 15px;
    margin: 10px 0;
  }

  section h2 {
    font-size: 1.4rem;
  }
}

/* Napomena ispod tabele */
.pricing-online .note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: -10px 0 20px 0;
    font-style: italic;
}

/* Da highlight red bude lepši */
.price-table .highlight {
    background: #fef3e8;
}

.price-table .highlight td {
    color: #b45309; /* tamnija narandžasta za bolju čitljivost */
    font-weight: 600;
}

/* Mobilna tabela — skrol umesto skupljanja */
@media (max-width: 600px) {
    .pricing-online {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        min-width: 500px; /* sprečava lomljenje */
    }
}
/* =====================
   CONTACT — Pastel Mint dizajn
===================== */
.contact {
  background: var(--pastel-mint, #e6f7f3);
  border: 1px solid #d1eae4;
  padding: 50px 20px;
  border-radius: 16px;
  margin: 20px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact-header .info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f87887;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-header .info-icon i {
  font-size: 24px;
  color: #fff;
}

.contact-header h2 {
  text-align: center;
  font-size: var(--fs-2xl);
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Forma — bela kartica na pastelnoj pozadini */
.php-email-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group label span {
  color: #e63946;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  color: #888;
  font-size: 0.85rem;
}

.form-note small {
  font-size: inherit;
}

/* reCAPTCHA */
.recaptcha-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* Dugme — pastel mint */
.submit-wrap {
  text-align: center;
}

.submit-wrap button {
  padding: 14px 40px;
  background: #f87887;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s;
}

.submit-wrap button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
  background: #047857;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 30px 15px;
    margin: 10px 0;
  }

  .php-email-form {
    padding: 25px 20px;
  }

  .submit-wrap button {
    width: 100%;
  }
}