/* ===== LOKALNI FONTOVI (self-hosted, bez Google Fonts CDN-a) ===== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-display-v40-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-v40-latin_latin-ext-700.woff2') format('woff2');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8902A;
  --gold-light: #D4AA50;
  --accent: #C9A84C;
  --bg: #FFFFFF;
  --bg-soft: #F7F5F0;
  --bg-warm: #F2EEE6;
  --border: #E8E2D8;
  --border-light: #F0EBE0;
  --text: #1A1610;
  --text-mid: #4A4035;
  --text-muted: #8A7E6E;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.13);
  --tr: 0.24s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter','Segoe UI',system-ui,sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display',Georgia,serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.7rem, 5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 600; }

/* ===== NAVBAR ===== */
/* Header/footer injection slots */
#site-header { display: contents; }

.navbar { background: var(--white); border-bottom: 1px solid var(--border); }
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.1); }

.navbar-logo-row { display: flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem 0.55rem; border-bottom: 1px solid var(--border-light); }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
/* nav-logo-img height defined in header-sticky block below */
.nav-logo-tagline { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }

.navbar-links-row { display: flex; align-items: center; justify-content: center; height: 46px; padding: 0 1rem; }
.nav-links { display: flex; align-items: center; gap: 0; position: relative; }
.nav-links > a, .nav-dropdown > .nav-drop-trigger {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.42rem 0.9rem; border-radius: 7px;
  font-size: 0.87rem; font-weight: 500; color: var(--text-mid);
  transition: var(--tr); white-space: nowrap; cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-dropdown:hover > .nav-drop-trigger,
.nav-dropdown > .nav-drop-trigger.active { color: var(--gold); background: rgba(184,144,42,0.08); }
.nav-links > a.active, .nav-dropdown > .nav-drop-trigger.active { font-weight: 600; }
.nav-links .nav-cta { background: var(--gold) !important; color: var(--white) !important; font-weight: 600; margin-left: 0.35rem; border-radius: 8px; }
.nav-links .nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-drop-arrow { font-size: 0.6rem; margin-left: 0.1rem; transition: transform var(--tr); }
.nav-dropdown:hover .nav-drop-arrow { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 210px; padding: 0.5rem 0;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-drop-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.1rem; font-size: 0.86rem; color: var(--text-mid); transition: var(--tr); }
.nav-drop-menu a:hover { background: var(--bg-soft); color: var(--gold); }
.nav-drop-menu a .drop-icon { font-size: 1rem; flex-shrink: 0; }
.nav-drop-divider { height: 1px; background: var(--border-light); margin: 0.3rem 0; }

/* Mobile bar */
.navbar-mobile { display: none; align-items: center; justify-content: space-between; padding: 0.7rem 1.1rem; min-height: 56px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.4rem; border: none; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); }
.nav-drawer.open { display: flex; }
.nav-drawer a { display: block; padding: 0.85rem 1.2rem; font-size: 0.97rem; font-weight: 500; color: var(--text-mid); border-bottom: 1px solid var(--border-light); transition: var(--tr); }
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--gold); background: rgba(184,144,42,0.05); }
.nav-drawer .nav-cta { background: var(--gold) !important; color: var(--white) !important; text-align: center; font-weight: 700 !important; margin: 0.7rem 1rem 0.9rem; border-radius: 10px; border-bottom: none !important; }
/* Drawer sub-items for Personalizacija */
.nav-drawer .drawer-sub { padding-left: 2rem; font-size: 0.9rem; background: var(--bg-soft); border-bottom: 1px solid var(--border-light); }
.nav-drawer .drawer-sub:hover { color: var(--gold); }
.nav-drawer .drawer-parent { display: flex; justify-content: space-between; align-items: center; }
.nav-drawer .drawer-parent span { font-size: 0.75rem; color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem 1.5rem; border-radius: 10px; font-size: 0.93rem; font-weight: 600; cursor: pointer; border: none; transition: var(--tr); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,144,42,0.25); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: var(--bg-soft); color: var(--text-mid); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-warm); border-color: var(--gold); color: var(--gold); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ===== HERO ===== */
.hero { display: flex; align-items: center; padding: 64px 1.5rem 56px; background: linear-gradient(135deg,#FDFBF7 0%,#F5F0E8 60%,#EDE5D4 100%); position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-80px; right:-80px; width:500px; height:500px; background:radial-gradient(circle,rgba(201,168,76,0.1) 0%,transparent 70%); pointer-events:none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.45rem; background: rgba(184,144,42,0.1); border: 1px solid rgba(184,144,42,0.25); border-radius: 100px; padding: 0.3rem 0.85rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-title { margin-bottom: 1rem; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.6rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.badge { display: flex; align-items: center; gap: 0.3rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.3rem 0.7rem; font-size: 0.8rem; color: var(--text-mid); box-shadow: var(--shadow-sm); }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 70px rgba(0,0,0,0.14), 0 0 0 1px rgba(184,144,42,0.12); background: var(--white); }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: contain; }

/* ===== SECTIONS ===== */
section { padding: 68px 1.5rem; }
.section-bg { background: var(--bg-soft); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-eyebrow { display: inline-block; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.section-title { margin-bottom: 0.6rem; }
.section-subtitle { color: var(--text-muted); font-size: 0.98rem; }
.prose-block { max-width: 760px; margin: 0 auto; }
.prose-block p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; margin-bottom: 1.1rem; }
.prose-block p:last-child { margin-bottom: 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .section-subtitle { max-width: 600px; margin: 0 auto; }
.divider { height: 1px; background: var(--border); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.color-muted { color: var(--text-muted); }
.color-gold { color: var(--gold); }
.btn-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ===== GRIDS ===== */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-2-start { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: start; }
.grid-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }

/* ===== CARDS ===== */
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.3rem; transition: var(--tr); box-shadow: var(--shadow-sm); }
.feature-card:hover { border-color: rgba(184,144,42,0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 0.96rem; margin-bottom: 0.35rem; }
.feature-card p { font-size: 0.84rem; color: var(--text-muted); }

.step-card { text-align: center; padding: 1.6rem 1.2rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--tr); }
.step-card:hover { border-color: rgba(184,144,42,0.28); box-shadow: var(--shadow-md); }
.step-number { width: 42px; height: 42px; border-radius: 50%; background: rgba(184,144,42,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; color: var(--gold); margin: 0 auto 0.7rem; }
.step-icon { font-size: 1.25rem; margin-bottom: 0.55rem; }
.step-card h3 { font-size: 0.93rem; margin-bottom: 0.3rem; }
.step-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== SERVICE LIST ===== */
.service-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.48rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.89rem; color: var(--text-mid); }
.service-list li:last-child { border-bottom: none; }
.check { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.service-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.service-img img { width: 100%; height: 360px; object-fit: cover; }

/* ===== SERVICE TABS ===== */
.services-tabs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2.2rem; flex-wrap: wrap; }
.tab-btn { padding: 0.52rem 1.25rem; border-radius: 8px; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: var(--tr); box-shadow: var(--shadow-sm); }
.tab-btn.active, .tab-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }

/* ===== PRICING ===== */
.price-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; position: relative; transition: var(--tr); box-shadow: var(--shadow-sm); }
.price-card:hover { border-color: rgba(184,144,42,0.38); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--gold); background: linear-gradient(160deg,#FFFDF7 0%,#FFF8EC 100%); box-shadow: 0 8px 36px rgba(184,144,42,0.12); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.9rem; border-radius: 100px; white-space: nowrap; }
.price-emoji { font-size: 1.65rem; }
.price-name { font-size: 1.15rem; font-family: 'Playfair Display',serif; font-weight: 700; }
.price-desc { color: var(--text-muted); font-size: 0.81rem; margin-top: 0.15rem; }
.price-amount { font-size: 1rem; font-weight: 700; color: var(--gold); }
.price-features { display: flex; flex-direction: column; gap: 0.44rem; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 0.48rem; font-size: 0.82rem; color: var(--text-muted); }
.price-features li strong { color: var(--text-mid); }
.price-features .hours { font-size: 0.85rem; font-weight: 700; color: var(--text); padding-bottom: 0.38rem; border-bottom: 1px solid var(--border); margin-bottom: 0.08rem; }

/* Business card – stacks on mobile via class */
.price-card-business { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.8rem 1.5rem; margin-top: 1.2rem; box-shadow: var(--shadow-sm); transition: var(--tr); }
.price-card-business:hover { border-color: rgba(184,144,42,0.38); box-shadow: var(--shadow-lg); }
.business-inner { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 1.8rem; align-items: center; }
.business-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.44rem 1rem; }
.business-features .hours { grid-column: 1/-1; }
.business-cta p { font-size: 0.81rem; color: var(--text-muted); margin-bottom: 0.9rem; }

/* Includes box */
.includes-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.includes-box h3 { font-size: 1rem; margin-bottom: 0.9rem; color: var(--gold); }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.includes-grid li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.55rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; text-align: left; background: var(--white); border: none; padding: 0.95rem 1.2rem; color: var(--text); font-size: 0.9rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: var(--tr); font-family: inherit; }
.faq-question:hover { background: var(--bg-soft); }
.faq-question.open { color: var(--gold); }
.faq-arrow { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; transition: var(--tr); color: var(--text-muted); }
.faq-question.open .faq-arrow { transform: rotate(180deg); border-color: var(--gold); color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.2rem; background: var(--bg-soft); color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; }
.faq-answer.open { max-height: 300px; padding: 0.85rem 1.2rem; }

/* ===== CTA BANNER ===== */
.equipment-note { background: var(--white); padding: 32px 1.5rem; }
.equipment-note-inner { display: flex; align-items: flex-start; gap: 1.1rem; max-width: 1200px; margin: 0 auto; background: linear-gradient(135deg, #FBF3E1 0%, #F6E9CC 100%); border: 1px solid rgba(184,144,42,0.25); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.4rem 1.6rem; }
.equipment-note-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); }
.equipment-note h3 { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--gold); }
.equipment-note p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
.equipment-note strong { color: var(--text); }

.cta-banner { background: linear-gradient(135deg,#1A1610 0%,#2A2014 50%,#1A1610 100%); color: #F0EDE8; text-align: center; padding: 68px 1.5rem; }
.cta-banner h2 { color: #F0EDE8; margin-bottom: 0.8rem; }
.cta-banner p { color: #A89D8A; margin-bottom: 1.6rem; font-size: 0.98rem; }
.cta-badges { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.cta-badges span { font-size: 0.8rem; color: #A89D8A; display: flex; align-items: center; gap: 0.4rem; }
.cta-badges span::before { content: '✔️'; }
.cta-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.4); color: #F0EDE8; }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero { padding: 56px 1.5rem 48px; text-align: center; background: linear-gradient(160deg,#FDFBF7 0%,#F5EFE2 100%); border-bottom: 1px solid var(--border); }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0.6rem auto 0; font-size: 0.98rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.95rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.6rem; box-shadow: var(--shadow-sm); transition: var(--tr); }
.contact-item:hover { border-color: rgba(184,144,42,0.32); box-shadow: var(--shadow-md); }
.contact-item-icon { font-size: 1.35rem; flex-shrink: 0; }
.contact-item-text .label { font-size: 0.71rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.12rem; }
.contact-item-text a, .contact-item-text p { font-weight: 600; color: var(--text); font-size: 0.9rem; }
.contact-item-text a:hover { color: var(--gold); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; box-shadow: var(--shadow-md); }
.form-title { font-size: 1.15rem; font-family: 'Playfair Display',serif; margin-bottom: 1.3rem; }
.form-group { margin-bottom: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
label { display: block; font-size: 0.76rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.32rem; text-transform: uppercase; letter-spacing: 0.04em; }
input, select, textarea { width: 100%; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: 8px; padding: 0.65rem 0.9rem; color: var(--text); font-size: 0.89rem; font-family: inherit; transition: var(--tr); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(184,144,42,0.1); }
textarea { resize: vertical; min-height: 110px; }
select option { background: var(--white); color: var(--text); }
.form-submit { width: 100%; padding: 0.85rem; font-size: 0.98rem; margin-top: 0.35rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { font-size: 2.8rem; margin-bottom: 0.9rem; }
.form-success p { color: var(--text-muted); }

/* ===== PERSONALIZACIJA STRANICA ===== */
.perso-section { scroll-margin-top: 110px; }
.perso-section + .divider + .perso-section { }
.perso-hero-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr 1fr; }
.perso-hero-card.reverse { direction: rtl; }
.perso-hero-card.reverse > * { direction: ltr; }
.perso-hero-img { min-height: 360px; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.perso-hero-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.perso-hero-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.perso-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2rem; }
.perso-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--tr); }
.perso-card:hover { border-color: rgba(184,144,42,0.32); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.perso-card-img { height: 160px; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.perso-card-body { padding: 1rem 1.1rem; }
.perso-card-body h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.perso-card-body p { font-size: 0.82rem; color: var(--text-muted); }

/* Anchor nav for personalizacija */
.perso-anchor-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 203px; z-index: 99; }
.perso-anchor-nav .container { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.perso-anchor-nav .container::-webkit-scrollbar { display: none; }
.perso-anchor-nav a { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.2rem; font-size: 0.86rem; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; white-space: nowrap; transition: var(--tr); }
.perso-anchor-nav a:hover, .perso-anchor-nav a.active-anchor { color: var(--gold); border-bottom-color: var(--gold); }

/* ===== GALLERY ===== */
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-soft); position: relative; box-shadow: var(--shadow-sm); transition: var(--tr); }
.gallery-item:hover { box-shadow: var(--shadow-md); border-color: rgba(184,144,42,0.28); }
.gallery-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg,var(--bg-soft),var(--bg-warm)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.84rem; }
.gallery-placeholder .icon { font-size: 1.9rem; color: var(--border); }

/* ===== FOOTER ===== */
footer { background: var(--text); color: #C8BEA8; padding: 2.75rem 1.5rem 1.75rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.75rem; }
.footer-col-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.5rem; }
.footer-col-locations a { font-size: 0.8rem; }
.footer-logo-img { width: 180px; max-width: 100%; margin-bottom: 0.9rem; display: block; }
.footer-brand p { color: #8A8070; font-size: 0.84rem; max-width: 290px; margin-bottom: 0.9rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.6rem; margin-bottom: 1.1rem; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #C8BEA8; transition: var(--tr); }
.footer-social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(184,144,42,0.35); }
.footer-col h4 { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.84rem; color: #8A8070; padding: 0.16rem 0; transition: var(--tr); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; color: #5A5040; flex-wrap: wrap; gap: 0.5rem; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; box-shadow: 0 4px 16px rgba(0,0,0,0.18); transition: var(--tr); text-decoration: none; }
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25D366; color: white; }
.float-scroll-top { background: var(--gold); color: var(--white); opacity: 0; pointer-events: none; font-size: 1.05rem; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s; }
.float-scroll-top.visible { opacity: 1; pointer-events: all; transform: scale(1); }

/* ===== FADE IN ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-in.visible { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* TABLET 769–1100px */
@media (min-width: 769px) and (max-width: 1100px) {
  .navbar-logo-row { display: flex; }
  .navbar-links-row { display: flex; }
  .navbar-mobile { display: none !important; }
  .nav-drawer { display: none !important; }
  .nav-links > a, .nav-dropdown > .nav-drop-trigger { padding: 0.38rem 0.6rem; font-size: 0.81rem; }

  .hero-inner { grid-template-columns: 1fr; }

  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 1.8rem; }
  .grid-2-start { grid-template-columns: 1fr; }
  .grid-steps { grid-template-columns: repeat(2,1fr); }

  .service-panel.active { grid-template-columns: 1fr; }
  .service-img { display: none; }

  .business-inner { grid-template-columns: 1fr; }
  .business-features { grid-template-columns: 1fr; }
  .business-features .hours { grid-column: 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }

  .perso-hero-card { grid-template-columns: 1fr; }
  .perso-hero-card.reverse { direction: ltr; }
  .perso-cards-grid { grid-template-columns: repeat(2,1fr); }
  .perso-anchor-nav { top: 203px; }
}

/* MOBILE ≤768px */
@media (max-width: 768px) {
  .topbar { font-size: 0.7rem; padding: 0.3rem 0.8rem; gap: 0.8rem; }
  .navbar-logo-row { display: none; }
  .navbar-links-row { display: none; }
  .navbar-mobile { display: flex; }
  .hamburger { display: flex; }

  section { padding: 48px 1rem; }
  .cta-banner { padding: 48px 1rem; }
  .page-hero { padding: 40px 1rem 32px; }
  .equipment-note { padding: 20px 1rem; }
  .equipment-note-inner { flex-direction: column; gap: 0.5rem; }

  .hero { padding: 40px 1rem 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 1.4rem; }
  .grid-2-start { grid-template-columns: 1fr; }
  .grid-steps { grid-template-columns: 1fr 1fr; }

  .service-panel.active { grid-template-columns: 1fr; }
  .service-img { display: none; }

  .business-inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .business-features { grid-template-columns: 1fr; }
  .business-features .hours { grid-column: 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }

  .perso-hero-card { grid-template-columns: 1fr; }
  .perso-hero-card.reverse { direction: ltr; }
  .perso-hero-img { min-height: 180px; }
  .perso-hero-content { padding: 1.4rem; }
  .perso-cards-grid { grid-template-columns: 1fr; }
  .perso-anchor-nav { top: 136px; }

  /* Nav drawer always override */
  .nav-drop-menu { display: none !important; }
}

/* SMALL ≤480px */
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .grid-steps { grid-template-columns: 1fr; }
  .floating-btns { bottom: 0.85rem; right: 0.85rem; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
  .btn { font-size: 0.88rem; padding: 0.62rem 1.1rem; white-space: normal; text-align: center; max-width: 100%; }
}

/* ===== HEADER STICKY WRAPPER (topbar + navbar zajedno) ===== */
.header-sticky { position: sticky; top: 0; z-index: 1000; }
.topbar { background: var(--text); color: #D4C9B4; font-size: 0.8rem; padding: 0.4rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.topbar a { color: #D4C9B4; display: flex; align-items: center; gap: 0.4rem; transition: color var(--tr); }
.topbar a:hover { color: var(--accent); }

/* Navbar no longer sticky itself — parent handles it */
.navbar { position: static; top: unset; box-shadow: var(--shadow-sm); }

/* Logo height 100px */
.nav-logo-img { height: 100px; width: auto; display: block; padding: 6px 0; }

/* ===== FOOTER LEGAL ROW ===== */
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding: 0 0 1rem; margin-top: 0; margin-bottom: 1rem; }
.footer-legal a { font-size: 0.8rem; color: #6A6050; transition: color var(--tr); }
.footer-legal a:hover { color: var(--white); }

/* ===== 404 PAGE ===== */
.error-404-section { min-height: 70vh; display: flex; align-items: center; padding: 80px 1.5rem; }
.error-404-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.error-404-camera { font-size: 4rem; margin-bottom: 0.5rem; }
.error-404-code { font-family: 'Playfair Display', serif; font-size: clamp(5rem, 20vw, 9rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.2rem; opacity: 0.18; position: relative; }
.error-404-title { font-size: clamp(1.3rem, 4vw, 1.9rem); margin-bottom: 0.9rem; margin-top: -2.5rem; position: relative; }
.error-404-msg { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.97rem; line-height: 1.7; }
.error-404-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.error-404-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; justify-content: center; font-size: 0.83rem; color: var(--text-muted); }
.error-404-links span { color: var(--text-muted); }
.error-404-links a { color: var(--gold); font-weight: 600; }
.error-404-links a:hover { text-decoration: underline; }

/* ===== LEGAL CONTENT ===== */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.1rem; margin: 2rem 0 0.6rem; color: var(--text); }
.legal-content p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.8rem; line-height: 1.75; }
.legal-content ul { margin: 0.4rem 0 0.9rem 1.2rem; }
.legal-content ul li { color: var(--text-muted); font-size: 0.92rem; padding: 0.22rem 0; list-style: disc; }
.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--text); color: #D4C9B4; padding: 1rem 1.5rem; box-shadow: 0 -4px 24px rgba(0,0,0,0.18); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner-inner p { font-size: 0.87rem; line-height: 1.55; }
.cookie-banner-inner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.btn-sm { padding: 0.45rem 1rem !important; font-size: 0.82rem !important; }

/* ===== COOKIE SETTINGS PAGE ===== */
.cookie-settings-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0; }
.cookie-settings-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border-light); }
.cookie-settings-row:last-child { border-bottom: none; }
.cookie-settings-row h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.cookie-settings-row p { font-size: 0.82rem; color: var(--text-muted); }
.cookie-toggle--always-on { font-size: 0.75rem; font-weight: 700; color: var(--gold); white-space: nowrap; background: rgba(184,144,42,0.1); padding: 0.3rem 0.7rem; border-radius: 100px; }
.cookie-toggle-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider { position: absolute; inset: 0; background: var(--border); border-radius: 26px; cursor: pointer; transition: var(--tr); }
.cookie-slider::before { content:''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: var(--tr); }
.cookie-toggle-switch input:checked + .cookie-slider { background: var(--gold); }
.cookie-toggle-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-toggle-switch--disabled .cookie-slider { opacity: 0.4; cursor: not-allowed; }
.cookie-save-row { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.cookie-save-msg { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
  .topbar { font-size: 0.72rem; gap: 1rem; padding: 0.35rem 0.8rem; }
  .nav-logo-img { height: 82px; }
  .error-404-actions { flex-direction: column; align-items: stretch; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-settings-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .topbar { gap: 0.6rem; }
  .topbar a { font-size: 0.69rem; }
}

/* ===== IMAGE RESPONSIVE FIX ===== */
/* Show service images on mobile below content, not hidden */
@media (max-width: 1100px) {
  .service-img { display: block !important; margin-top: 1.2rem; }
  .service-img img { height: 240px; width: 100%; border-radius: var(--radius); }
  .service-panel.active { grid-template-columns: 1fr; }
}

/* Hero image: contain (never crops the product photo), white letterbox blends with photo's own white background */
.hero-img-wrap img { width: 100%; height: 480px; object-fit: contain; }

@media (min-width: 769px) and (max-width: 1100px) {
  .hero-img-wrap img { height: 380px; }
}

@media (max-width: 768px) {
  .hero-img-wrap img { height: 280px; }
}

/* Ensure logo images never overflow */
.footer-logo-img { width: 160px; max-width: 100%; height: auto; }
@media (max-width: 480px) {
  .nav-logo-img { height: 82px; }
}
