/* =============================================
   SMS Custom Styles – Redesign 2026
   ============================================= */

:root {
  --sms-navy:        #1B3B6B;
  --sms-navy-dark:   #0F2445;
  --sms-navy-mid:    #244f8c;
  --sms-orange:      #FF7820;
  --sms-orange-h:    #e86810;
  --sms-teal:        #0ea2bd;
  --sms-teal-l:      #1ec3e0;
  --sms-light-bg:    #F4F8FF;
  --sms-border:      #e0eaf8;
}

body { -webkit-font-smoothing: antialiased; }

/* ─── Header ─────────────────────────────────── */
.header {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 20px rgba(27,59,107,0.1) !important;
  z-index: 9999 !important;
}

.navbar .nav-link        { font-weight: 500 !important; color: var(--sms-navy) !important; }
.navbar .nav-link:hover  { color: var(--sms-orange) !important; }
.navbar .active          { color: var(--sms-orange) !important; }

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--sms-orange) !important;
  border: 2px solid var(--sms-orange) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: var(--sms-orange-h) !important;
  border-color: var(--sms-orange-h) !important;
}

/* ─── Hero ────────────────────────────────────── */
.hero-animated {
  background: linear-gradient(140deg, #0F2445 0%, #1B3B6B 60%, #1a5c8a 100%) !important;
  min-height: 88vh;
  padding: 130px 0 70px;
}

.hero-animated h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-animated h1 .hero-accent { color: var(--sms-orange); }

.hero-animated p {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-animated .btn-get-started {
  background: var(--sms-orange);
  border: none;
  padding: 15px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(255,120,32,0.4);
}
.hero-animated .btn-get-started:hover {
  background: var(--sms-orange-h);
  box-shadow: 0 12px 30px rgba(255,120,32,0.5);
  transform: translateY(-2px);
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff !important;
  padding: 13px 36px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  display: inline-block;
  transition: 0.3s;
}
.hero-btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.9);
}

/* ─── Stats strip ─────────────────────────────── */
.stats-strip {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--sms-border);
  box-shadow: 0 6px 24px rgba(27,59,107,0.07);
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--sms-border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--sms-navy);
  font-family: var(--font-secondary);
  line-height: 1;
}
.stat-orange { color: var(--sms-orange) !important; }
.stat-teal   { color: var(--sms-teal)   !important; }

.stat-label {
  display: block;
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-top: 5px;
  font-weight: 500;
}

/* ─── Feature cards ───────────────────────────── */
.featured-services { padding: 60px 0 30px; }

.featured-services .service-item {
  border-radius: 16px;
  border: 1px solid var(--sms-border);
  box-shadow: 0 4px 18px rgba(27,59,107,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  padding: 30px 24px 24px;
}
.featured-services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(27,59,107,0.14);
  border-color: transparent;
}

.featured-services .service-item .icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.featured-services .service-item .icon i { font-size: 26px; color: #fff !important; }

.icon-navy   { background: linear-gradient(135deg, var(--sms-navy), var(--sms-navy-mid)); }
.icon-orange { background: linear-gradient(135deg, var(--sms-orange), #FFB347); }
.icon-teal   { background: linear-gradient(135deg, var(--sms-teal), var(--sms-teal-l)); }
.icon-green  { background: linear-gradient(135deg, #059652, #20c997); }

.featured-services .service-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sms-navy);
  margin-bottom: 10px;
}
.featured-services .service-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ─── Section header ──────────────────────────── */
.section-header h2 { color: var(--sms-navy) !important; }

/* ─── Badge / pill label ──────────────────────── */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-orange {
  background: rgba(255,120,32,0.15);
  border: 1px solid rgba(255,120,32,0.35);
  color: #FF9A4C;
}
.badge-teal {
  background: rgba(14,162,189,0.12);
  border: 1px solid rgba(14,162,189,0.30);
  color: #1ABFD8;
}
.badge-navy-light {
  background: rgba(27,59,107,0.08);
  border: 1px solid rgba(27,59,107,0.20);
  color: var(--sms-navy);
}

/* ─── Direktor section ────────────────────────── */
.direktor-section {
  background: linear-gradient(140deg, #0F2445 0%, #1B3B6B 100%);
  padding: 90px 0;
}

.direktor-section h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.direktor-section h2 .accent { color: var(--sms-orange); }

.direktor-section .intro-text {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.direktor-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.direktor-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 16px;
}
.direktor-list li:last-child { border-bottom: none; }
.direktor-list li i { color: var(--sms-orange); font-size: 22px; flex-shrink: 0; }

.screenshot-shadow {
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  width: 100%;
}

/* ─── Button styles ───────────────────────────── */
.btn-pill-orange {
  background: var(--sms-orange);
  color: #fff !important;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(255,120,32,0.35);
}
.btn-pill-orange:hover {
  background: var(--sms-orange-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,120,32,0.45);
}

.btn-pill-teal {
  background: var(--sms-teal);
  color: #fff !important;
  padding: 13px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  display: inline-block;
  transition: 0.3s;
}
.btn-pill-teal:hover {
  background: var(--sms-teal-l);
  transform: translateY(-2px);
}

.btn-pill-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff !important;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  display: inline-block;
  transition: 0.3s;
  margin-left: 12px;
}
.btn-pill-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ─── Feature list (used in multiple sections) ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  color: #444;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i         { font-size: 20px; margin-top: 1px; flex-shrink: 0; }
.feature-list li .f-title  { font-weight: 600; color: var(--sms-navy); display: block; margin-bottom: 2px; }
.feature-list li .f-desc   { font-size: 13px; color: #888; }

.feature-list-light li        { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.feature-list-light li .f-title { color: #fff; }
.feature-list-light li .f-desc  { color: rgba(255,255,255,0.55); }

/* ─── Raspored section ────────────────────────── */
.raspored-section {
  padding: 90px 0;
  background: var(--sms-light-bg);
}
.raspored-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--sms-navy);
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.raspored-section h2 .accent { color: var(--sms-teal); }
.raspored-section .intro-text {
  color: #555;
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ─── Detalji sekcija (2 col highlight boxes) ─── */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.highlight-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid var(--sms-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.3s;
}
.highlight-box:hover { box-shadow: 0 8px 24px rgba(27,59,107,0.1); }
.highlight-box i { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.highlight-box .h-title { font-weight: 600; font-size: 14px; color: var(--sms-navy); margin-bottom: 3px; }
.highlight-box .h-desc  { font-size: 12px; color: #888; }

/* ─── Finansije section ───────────────────────── */
.finansije-section {
  padding: 90px 0;
  background: #fff;
}
.finansije-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--sms-navy);
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.finansije-section h2 .accent { color: var(--sms-orange); }
.finansije-section .intro-text {
  color: #555;
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ─── Student app section ─────────────────────── */
.student-section {
  padding: 90px 0;
  background: var(--sms-light-bg);
}
.student-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--sms-navy);
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.student-section h2 .accent { color: var(--sms-orange); }
.student-section .intro-text {
  color: #555;
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.student-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.student-feat {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid var(--sms-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.student-feat i { font-size: 22px; flex-shrink: 0; }
.student-feat .f-title { font-weight: 600; font-size: 14px; color: var(--sms-navy); margin-bottom: 3px; }
.student-feat .f-desc  { font-size: 12px; color: #888; }

/* ─── About section image ────────────────────── */
.about .row.g-4 { align-items: flex-start !important; }

/* ─── About tabs ──────────────────────────────── */
.about .nav-pills .nav-link {
  color: var(--sms-navy);
  border: 1px solid rgba(27,59,107,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-right: 6px;
  margin-bottom: 8px;
  transition: 0.2s;
}
.about .nav-pills .nav-link.active,
.about .nav-pills .nav-link:hover {
  background: var(--sms-navy) !important;
  border-color: var(--sms-navy) !important;
  color: #fff !important;
}

/* ─── CTA ─────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--sms-orange) 0%, #FF9A4C 100%) !important;
}
.cta h3 { color: #fff !important; }
.cta p  { color: rgba(255,255,255,0.9) !important; }

/* ─── Clients header ──────────────────────────── */
#clients-header {
  padding: 50px 0 0;
  text-align: center;
}
#clients-header p {
  font-size: 15px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ─── Footer ──────────────────────────────────── */
.footer { background: var(--sms-navy-dark) !important; }
.footer-info h3 { color: var(--sms-orange) !important; }
.footer-info p  { color: rgba(255,255,255,0.65) !important; }
.footer-links h4 { color: rgba(255,255,255,0.9) !important; }
.footer-links a  { color: rgba(255,255,255,0.6) !important; }
.footer-links a:hover { color: var(--sms-orange) !important; }
.footer .social-links a { background: rgba(255,255,255,0.1); transition: 0.3s; }
.footer .social-links a:hover { background: var(--sms-orange); }
.footer-legal { background: var(--sms-navy-dark) !important; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-legal .copyright { color: rgba(255,255,255,0.5) !important; font-size: 13px; }

/* ─── Mobile nav sidebar ─────────────────────── */
@media (max-width: 1279px) {
  .navbar ul {
    background: #f0f5ff !important;
  }

  .navbar a,
  .navbar a:focus {
    color: var(--sms-navy) !important;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar li:hover > a {
    color: var(--sms-orange) !important;
  }

  .mobile-nav-toggle {
    color: var(--sms-navy) !important;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--sms-navy) !important;
  }
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
  .hero-animated h1 { font-size: 34px; }
  .direktor-section h2, .raspored-section h2,
  .finansije-section h2, .student-section h2 { font-size: 30px; }
  .direktor-section, .raspored-section,
  .finansije-section, .student-section { padding: 60px 0; }
  .highlight-grid, .student-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-animated h1 { font-size: 27px; }
  .hero-animated p  { font-size: 16px; }
  .stat-item        { border-right: none; border-bottom: 1px solid var(--sms-border); padding: 14px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number      { font-size: 34px; }
}
