/* ==========================================================================
   CARIBROD ASIST - PREMIUM DESIGN SYSTEM & CUSTOM CSS
   ========================================================================== */

/* 1. KOREN I DIZAJN TOKENI (CSS Varijable) */
:root {
  /* Paleta boja - inspirisana zlatno-tamnim logom */
  --bg-primary: #0f1115;
  --bg-secondary: #171b22;
  --bg-card: #1d222b;
  --bg-card-hover: #262c37;
  
  --color-gold-light: #f3e7c4;
  --color-gold: #d4af37;
  --color-gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f3e7c4 0%, #d4af37 50%, #aa7c11 100%);
  
  --text-white: #ffffff;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f1115;
  
  --accent-blue: #3b82f6;
  --accent-red: #ef4444;
  --accent-green: #10b981;
  
  /* Tipografija */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Efekti i Bordere */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --border-glass: 1px solid rgba(212, 175, 55, 0.15);
  --border-glass-hover: 1px solid rgba(212, 175, 55, 0.4);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset i osnovni stilovi */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Pomoćne klase za raspored */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 48px; height: 48px; }
.icon-xl { width: 64px; height: 64px; }
.gold-fill { fill: url(#goldGradient); }

.scroll-offset {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   2. DUGMIĆI I ELEMENTI INTERFEJSA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.1);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

.btn-text:hover {
  color: var(--color-gold);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.badge-accent {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ==========================================================================
   3. TOP INFO BAR I HEADER / NAVIGACIJA
   ========================================================================== */
.top-bar {
  background-color: #0b0d10;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-link:hover {
  color: var(--color-gold);
}

.top-bar-location {
  display: none;
}

@media (min-width: 768px) {
  .top-bar-location {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

/* Glavno Zaglavlje */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
  padding: 0; /* Visina popunjava ceo prostor za logo */
  transition: background var(--transition-fast), padding var(--transition-fast);
}

.main-header.shrunk {
  background: rgba(11, 13, 16, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 80px; /* Povećan logo */
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--transition-fast), height var(--transition-fast);
}

.main-header.shrunk .header-logo-img {
  height: 56px; /* Smanjenje visine pri skrolovanju */
}

.header-logo-img:hover {
  transform: scale(1.02);
}

/* Desktop Meni */
.desktop-nav {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header {
  display: none;
}

/* Mobilni Burger Meni */
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 102;
}

.burger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.burger-menu.open .burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.open .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.open .burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }
  .btn-header {
    display: inline-flex;
  }
  .burger-menu {
    display: none;
  }
}

/* Mobilni overlay meni */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 120px 40px 40px;
  transition: right var(--transition-normal);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

.mobile-nav-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}

.mobile-nav-footer p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

/* ==========================================================================
   4. HERO SEKCIJA (Glavni deo)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 80px 0;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(23, 27, 34, 0.4) 0%, rgba(15, 17, 21, 1) 90%);
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 46px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 52px;
  }
}

.hero-subtitle {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-gold-light);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 22px;
  }
}

.hero-text {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-text-highlight {
  font-size: 16px;
  font-weight: 500;
  border-left: 3px solid var(--color-gold);
  padding-left: 16px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Vizuelni deo */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.visual-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6));
}

/* Ključne animacije za vizuelne efekte */
.anim-spin {
  transform-origin: 250px 200px;
  animation: radarSpin 40s linear infinite;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-pulse {
  animation: lineGlow 4s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  0% { opacity: 0.6; filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); }
  100% { opacity: 1; filter: drop-shadow(0 0 12px rgba(255,255,255,0.7)); }
}

.ping {
  transform-origin: center;
  animation: pingGlow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingGlow {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ==========================================================================
   5. SEKCIJA: MODEL POSLOVANJA (Bez rizika)
   ========================================================================== */
.business-model-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.section-header {
  margin-bottom: 64px;
}

.section-tagline {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 20px auto 0;
  border-radius: 5px;
}

.card-container {
  perspective: 1000px;
}

.card {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  background-color: var(--bg-card-hover);
}

.accent-card {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-sm), rgba(212, 175, 55, 0.05);
}

.accent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.card-icon-wrapper {
  margin-bottom: 24px;
}

.card-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.card-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-badge {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
  padding: 6px 12px;
  border-radius: 4px;
  align-self: flex-start;
}

.gold-badge {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
}

/* ==========================================================================
   6. STRANICA O NAMA
   ========================================================================== */
.about-section {
  padding: 100px 0;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.image-placeholder-wrapper {
  width: 100%;
  max-width: 400px;
}

.about-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.about-content .section-title,
.about-content .accent-line {
  margin-left: 0;
  margin-right: 0;
}

.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-white);
  margin-top: 24px;
  margin-bottom: 24px;
}

.about-subheading {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.list-text {
  color: var(--text-muted);
  font-size: 15px;
}

.about-footer-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.about-region-box {
  background-color: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 24px 30px;
}

.about-region-box h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.about-region-box p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   7. STRANICA USLUGE
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-sm), rgba(212, 175, 55, 0.05);
}

.service-icon-bg {
  background: rgba(212, 175, 55, 0.05);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  min-height: 52px;
  line-height: 1.4;
}

.service-body {
  color: var(--text-muted);
  font-size: 14px;
}

.service-body p {
  margin-bottom: 16px;
}

.service-bullets {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  position: relative;
  padding-left: 20px;
}

.service-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* ==========================================================================
   8. PREMIUM DIZAJN: INTERAKTIVNI VODIČ / ASISTENT
   ========================================================================== */
.calculator-section {
  padding: 100px 0;
}

.section-desc {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--text-muted);
}

.calculator-box {
  max-width: 800px;
  margin: 50px auto 0;
  background-color: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* Stepper zaglavlje */
.calc-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.step-indicator {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.step-indicator.active {
  color: var(--color-gold);
  font-weight: 700;
}

.step-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 0 16px;
}

/* Koraci sadržaj */
.calc-step-content {
  display: none;
}

.calc-step-content.active {
  display: block;
  animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-question {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 32px;
  text-align: center;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 576px) {
  .calc-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #step-2 .calc-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #step-3 .calc-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Dugmići za opcije */
.calc-option-btn {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  min-height: 130px;
}

.calc-option-btn:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background-color: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.calc-option-btn svg {
  color: var(--color-gold);
}

.calc-option-btn span {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
}

/* Indikator slova */
.btn-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  font-size: 12px;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.calc-back-btn {
  display: block;
  margin: 0 auto;
}

/* Prikaz rezultata */
.result-card {
  text-align: center;
}

.result-success-icon {
  margin-bottom: 20px;
}

.result-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 16px;
}

.result-details {
  background: var(--bg-card);
  border: var(--border-glass);
  padding: 30px;
  border-radius: var(--border-radius-md);
  text-align: left;
  margin-bottom: 32px;
}

.result-details h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.result-details p {
  color: var(--text-primary);
  font-size: 15px;
  margin-bottom: 12px;
}

.result-details ul {
  margin-top: 12px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-details li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.result-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

/* ==========================================================================
   9. STRANICA: ČESTA PITANJA (FAQ)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-white);
  padding-right: 16px;
}

.faq-icon {
  display: flex;
  align-items: center;
  color: var(--color-gold);
  transition: transform var(--transition-fast);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-content-inner p {
  margin-top: 12px;
}

/* Otvoreno FAQ stanje */
.faq-item.active {
  border-color: var(--color-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   10. POZIV NA AKCIJU - CTA
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 80px 0;
  background-color: #0b0d10;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 36px;
  }
}

.cta-lead {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   11. STRANICA: KONTAKT
   ========================================================================== */
.contact-section {
  padding: 100px 0;
}

.contact-info-column .section-title,
.contact-info-column .accent-line {
  margin-left: 0;
  margin-right: 0;
}

.contact-lead {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 40px;
}

/* Detalji kontakta */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  background-color: var(--bg-secondary);
  border: var(--border-glass);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-detail-text p {
  color: var(--text-muted);
  font-size: 14px;
}

.gold-hover-link:hover {
  color: var(--color-gold);
}

/* Kontakt forma */
.form-wrapper {
  background-color: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-wrapper h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 8px;
}

.form-wrapper p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

/* Moderne plutajuće labele */
.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-white);
  transition: border-bottom-color var(--transition-fast);
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
  font-size: 15px;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

/* Fokus stanja */
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: transparent;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -15px;
  font-size: 12px;
  color: var(--color-gold);
}

.form-status {
  font-size: 14px;
  margin-bottom: 24px;
  display: none;
}

.form-status.success {
  display: block;
  color: var(--accent-green);
}

.form-status.error {
  display: block;
  color: var(--accent-red);
}

.btn-submit {
  display: flex;
  width: 100%;
  gap: 12px;
}

/* ==========================================================================
   12. FOOTER (Podnožje)
   ========================================================================== */
.main-footer {
  background-color: #0b0d10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0 0;
}

.footer-grid {
  gap: 48px;
  margin-bottom: 60px;
}

.brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  align-self: flex-start;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-address,
.footer-hours {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-hours {
  margin-top: 16px;
  border-left: 2px solid var(--color-gold);
  padding-left: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   13. PLUTAJUĆI VIBER / WHATSAPP WIDGET
   ========================================================================== */
.floating-contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* Plutajuće dugme */
.floating-btn {
  background: var(--gold-gradient);
  color: var(--text-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212,175,55,0.4);
  transition: all var(--transition-fast);
  position: relative;
  animation: pulseWidget 2s infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(212,175,55,0.6);
  animation-play-state: paused;
}

@keyframes pulseWidget {
  0% { transform: scale(1); box-shadow: 0 10px 25px rgba(212,175,55,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(212,175,55,0.6); }
  100% { transform: scale(1); box-shadow: 0 10px 25px rgba(212,175,55,0.4); }
}

.widget-icon {
  width: 30px;
  height: 30px;
}

/* Razgovor balončić */
.chat-bubble {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  color: var(--text-white);
  max-width: 250px;
  position: relative;
  display: none;
  animation: slideBubble 0.3s ease forwards;
}

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 25px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--bg-card) transparent;
  display: block;
  width: 0;
}

.chat-bubble-close {
  position: absolute;
  top: 4px;
  right: 8px;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
}

.chat-bubble-close:hover {
  color: var(--text-white);
}

@keyframes slideBubble {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Opcije za čet */
.chat-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: slideBubble 0.2s ease forwards;
}

.chat-options.open {
  display: flex;
}

.chat-option-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.chat-option-link:hover {
  transform: translateY(-2px);
}

.wa-btn {
  background-color: #25d366;
  color: white;
}

.wa-btn:hover {
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}
