/* 
   Salon za pse Šapica Grooming - Stilovi (Green Luxury Design System)
   Kreirano sa pažnjom za vrhunsku estetiku i visoku konverziju.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- OSNOVNI DIZAJN TOKENI (Brendirana Zelena Tema) --- */
:root {
  /* Svetla tema (Default - Nežna zelena) */
  --bg-primary: #F5FBF2;          /* Nežna sage-bela */
  --bg-secondary: #E4F2DE;        /* Svetlo zelena za sekcije */
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.55);
  --border-glass: rgba(123, 199, 77, 0.25);
  --text-primary: #1A2E1A;        /* Duboko šumsko-crna za čitljivost */
  --text-secondary: #3D5A3D;      /* Tamno zeleno-siva */
  --text-muted: #6E8F6E;
  
  --primary: #7BC74D;             /* Glavna zelena brend boja (iz loga) */
  --primary-hover: #5FA535;
  --primary-rgb: 123, 199, 77;
  
  --accent-green: #9EDE7A;        /* Svetla zelena */
  --accent-green-hover: #7BC74D;
  --accent-gold: #D4A373;         /* Zlatni detalji za luksuz */
  --accent-gold-rgb: 212, 163, 115;
  
  --viber-color: #7360F2;
  --viber-hover: #5A47D4;
  --success: #2EC4B6;
  
  --shadow-sm: 0 4px 12px rgba(123, 199, 77, 0.08);
  --shadow-md: 0 8px 30px rgba(58, 95, 58, 0.08);
  --shadow-lg: 0 16px 40px rgba(58, 95, 58, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(123, 199, 77, 0.06);
  
  --font-headings: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

[data-theme="dark"] {
  /* Tamna tema (Šumsko-Crna) */
  --bg-primary: #0D1A0D;          /* Duboki tamno-zeleni ton */
  --bg-secondary: #152415;        /* Nešto svetlija tamna zelena */
  --bg-card: rgba(21, 36, 21, 0.85);
  --bg-glass: rgba(13, 26, 13, 0.6);
  --border-glass: rgba(123, 199, 77, 0.18);
  --text-primary: #F0F7ED;        /* Kontrastni svetlo zeleno-beli tekst */
  --text-secondary: #D0E2C8;
  --text-muted: #A3BF9A;
  
  --primary: #8DD462;
  --primary-hover: #A8E588;
  
  --accent-green: #9EDE7A;
  --accent-gold: #E29578;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
}

/* --- LEKOVI PROTIV RESETA --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

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

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

button, input, select {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

/* --- KORISNE KLASE & ELEMENTI --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 90px;
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

.text-center { text-align: center; }

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  border-radius: 24px;
  transition: var(--transition-smooth);
}

/* Dugmad (Buttons) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
  color: #FFF;
  box-shadow: 0 8px 24px rgba(123, 199, 77, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(123, 199, 77, 0.45);
}

.btn-viber {
  background: var(--viber-color);
  color: #FFF;
  box-shadow: 0 8px 24px rgba(115, 96, 242, 0.25);
  animation: pulse-viber 2.5s infinite;
}

.btn-viber:hover {
  background: var(--viber-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(115, 96, 242, 0.4);
}

.btn-secondary {
  border: 1px solid var(--primary);
  color: var(--text-primary);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(123, 199, 77, 0.08);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(123, 199, 77, 0.12);
  color: var(--primary);
  margin-bottom: 16px;
}

/* --- NAVIGACIJA (Header) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

.header.scrolled {
  padding: 12px 0;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-glass);
}

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

/* Logo sa kružnom sličicom */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  background-color: #FFF;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo span {
  background: linear-gradient(135deg, var(--primary) 0%, #3A5F3A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

@media (min-width: 993px) {
  .nav-container nav {
    margin-left: auto;
    margin-right: 48px;
  }
}

/* --- DROPDOWN MENI --- */
.dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: var(--transition-fast);
}

.dropdown:hover .chevron {
  transform: translateY(1px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 12px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 1001;
}

/* Pseudo bridge to prevent closing on gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-item::after {
  display: none !important;
}

.dropdown-item:hover {
  background: rgba(123, 199, 77, 0.08);
}

.dropdown-title {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: block;
}

.dropdown-item:hover .dropdown-title {
  color: var(--primary);
}

.dropdown-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  font-weight: 400;
}

/* Mobile Dropdown Override */
@media (max-width: 992px) {
  .dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .dropdown-trigger {
    justify-content: center;
  }

  .chevron {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: none;
    min-width: auto;
    transition: none;
  }

  .dropdown-item {
    padding: 4px 0;
    align-items: center;
    text-align: center;
  }

  .dropdown-desc {
    display: none;
  }
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* Prekidač Teme */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.theme-toggle:hover {
  transform: scale(1.05);
  background: var(--bg-secondary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .sun-icon { display: none; }
[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none; }

/* Hamburger Meni */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
    border-left: 1px solid var(--border-glass);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  /* Animacija hamburgera u 'X' */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
}

/* --- HERO SEKCIJA (Section 1) --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 10% 20%, rgba(123, 199, 77, 0.15) 0%, rgba(158, 222, 122, 0.05) 50%, transparent 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, #3A5F3A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(123, 199, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.trust-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero vizuelni deo sa slikom */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 40px 100px 40px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  animation: float 6s ease-in-out infinite;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 400px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.04);
}

/* Dekorativni oblici u pozadini heroja */
.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 199, 77, 0.3) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
}

.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(58, 95, 58, 0.2) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-floating-card-1 {
  bottom: 5%;
  left: -12%;
}

.hero-floating-card-2 {
  top: 10%;
  right: -8%;
}

.floating-avatar-group {
  display: flex;
}

.floating-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -8px;
  object-fit: cover;
}

.floating-avatar:first-child {
  margin-left: 0;
}

.hero-floating-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.rating-stars {
  color: var(--accent-gold);
  display: flex;
  gap: 2px;
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 32px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .hero-floating-card-1 {
    left: 2%;
  }
  .hero-floating-card-2 {
    right: 2%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-floating-card {
    display: none;
  }
}

/* --- USLUGE (Services) --- */
.services-section {
  background-color: var(--bg-secondary);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.service-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 199, 77, 0.3);
}

.service-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123, 199, 77, 0.15) 0%, rgba(158, 222, 122, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
  color: #FFF;
}

.service-icon-container svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.service-features svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-headings);
  color: var(--primary);
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- INTERAKTIVNI ZAKAZIVANJE POMOĆNIK (Breed Estimator) --- */
.widget-section {
  background: radial-gradient(circle at 90% 80%, rgba(123, 199, 77, 0.08) 0%, transparent 50%);
}

.widget-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.widget-left {
  padding: 48px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-right: 1px solid var(--border-glass);
}

.widget-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .widget-wrapper {
    grid-template-columns: 1fr;
  }
  .widget-left {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
    padding: 32px;
  }
  .widget-right {
    padding: 32px;
  }
}

.widget-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.widget-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.breed-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.breed-option {
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.breed-option:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.breed-option.active {
  border-color: var(--primary);
  background: rgba(123, 199, 77, 0.1);
  box-shadow: 0 4px 12px rgba(123, 199, 77, 0.15);
}

.breed-option-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.breed-option p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.service-select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%237BC74D' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 16px);
  background-position-y: 50%;
}

.result-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(123, 199, 77, 0.05);
  border: 1px dashed rgba(123, 199, 77, 0.3);
  margin-bottom: 30px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.result-row:last-child {
  margin-bottom: 0;
  border-top: 1px solid rgba(123, 199, 77, 0.15);
  padding-top: 12px;
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.result-value {
  font-weight: 700;
  color: var(--text-primary);
}

.result-value.price {
  color: var(--primary);
  font-size: 1.25rem;
}

/* --- GALERIJA RADOVA --- */
.gallery-section {
  background-color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  border: 3px solid var(--bg-card);
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08) rotate(1deg);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(123, 199, 77, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.8rem;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- PRE I POSLE SLIDER --- */
.comparison-section {
  background: var(--bg-secondary);
}

.slider-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  user-select: none;
  border: 4px solid var(--bg-card);
  touch-action: pan-y;
  cursor: ew-resize;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.img-before {
  z-index: 1;
}

.img-after {
  z-index: 2;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  width: 100%;
  height: 100%;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #FFF;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 1.2rem;
  pointer-events: none;
  border: 3px solid var(--primary);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.slider-container:hover .slider-handle-button {
  transform: translate(-50%, -50%) scale(1.12);
  background-color: var(--primary);
  color: #FFF;
  border-color: #FFF;
  box-shadow: 0 6px 20px rgba(123, 199, 77, 0.4);
}

.slider-container.dragging .slider-handle-button {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: var(--primary);
  color: #FFF;
  border-color: #FFF;
  box-shadow: 0 8px 25px rgba(123, 199, 77, 0.6);
}

.slider-label {
  position: absolute;
  bottom: 20px;
  z-index: 4;
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  color: #FFF;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

/* --- O NAMA SEKCIJA --- */
.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 20px 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

@media (max-width: 480px) {
  .about-badge-card {
    right: 10px;
    bottom: -15px;
    padding: 16px;
  }
}

.about-badge-num {
  font-size: 2.2rem;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

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

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(123, 199, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-feature-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* --- UTISCI KLIJENATA (Testimonials) --- */
.testimonials-section {
  background: radial-gradient(circle at 10% 80%, rgba(123, 199, 77, 0.08) 0%, transparent 60%);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 30px;
  position: relative;
}

.testimonials-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-card {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 48px;
  flex-shrink: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 32px 20px;
  }
}

.quote-icon {
  color: var(--accent-green);
  margin-bottom: 24px;
}

.quote-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 1.05rem;
  }
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
}

.google-review-rating {
  justify-content: center;
  margin: -12px 0 18px;
}

.google-review-rating .empty-star {
  opacity: 0.25;
}

.testimonial-no-comment {
  color: var(--text-muted);
}

.client-name {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.client-dog {
  font-size: 0.85rem;
  color: var(--text-muted);
}

a.client-dog:hover {
  color: var(--primary);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary);
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}

/* --- ČESTA PITANJA (FAQ) --- */
.faq-section {
  background: var(--bg-secondary);
}

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

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(123, 199, 77, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 30px 24px 30px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Otvoreno stanje */
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 199, 77, 0.15);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #FFF;
}

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

/* --- KONTAKT & LOKACIJA --- */
.contact-section {
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-card {
  padding: 48px;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-subtitle {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(123, 199, 77, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-item-details h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-item-details p, .contact-item-details a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-item-details a:hover {
  color: var(--primary);
}

/* Radno vreme */
.hours-card {
  padding: 48px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-glass);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-time {
  color: var(--text-secondary);
}

.hours-time.closed {
  color: var(--primary);
  font-weight: 600;
}

/* Integrisana mapa */
.map-container {
  width: 100%;
  height: 450px;
  border-top: 1px solid var(--border-glass);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-secondary);
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: #FFF;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- ANIMACIJE & INTERACTION (Scroll & Hover) --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Plutajući Viber Button */
.viber-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--viber-color);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(115, 96, 242, 0.45);
  z-index: 998;
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulse-viber 2.5s infinite;
}

.viber-floating:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--viber-hover);
}

.viber-floating svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Viber pulsirajuća animacija */
@keyframes pulse-viber {
  0% {
    box-shadow: 0 0 0 0 rgba(115, 96, 242, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(115, 96, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(115, 96, 242, 0);
  }
}

/* Plutajuća animacija */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mobile Theme Toggle Styles */
.mobile-only-theme-toggle,
.mobile-only-link {
  display: none;
}

@media (max-width: 992px) {
  .mobile-only-link {
    display: block;
  }
  .nav-actions > .theme-toggle {
    display: none !important;
  }
  .nav-actions > .btn-viber {
    display: none !important;
  }
  .viber-floating {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
  }
  .viber-floating.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
  .mobile-only-theme-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .mobile-theme-toggle {
    width: auto !important;
    padding: 10px 20px;
    border-radius: 30px !important;
    gap: 10px;
  }
}

/* --- BOOKING MODAL STYLING --- */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 26, 13, 0.6);
  backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  width: 90%;
  max-width: 440px;
  padding: 40px 30px 30px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  border-radius: 28px;
  text-align: center;
  z-index: 2001;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active .booking-modal-content {
  transform: scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.booking-modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.booking-modal-title {
  font-size: 1.8rem;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.booking-modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-option-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 16px 24px;
  border-radius: 20px;
  gap: 16px;
  background: linear-gradient(135deg, var(--viber-color) 0%, #5A47D4 100%);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  color: #FFF;
}

.booking-option-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(115, 96, 242, 0.35);
  color: #FFF;
}

.option-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.option-details {
  display: flex;
  flex-direction: column;
}

.option-name {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-headings);
}

.option-phone {
  font-size: 0.8rem;
  opacity: 0.85;
}

