/* ---------------------------------------------------------------
   Stranica jednog servisa.

   Prati izgled ostatka sajta: ista sirina sekcije (1200px) kao mreza
   servisa na naslovnoj, isti panel kao kartica (--card-bg, isti ram i
   radijus), iste oznake sekcija i isti razmaci iz .dest-section.
   Ikona je isti Unicode znak kao na kartici, samo krupan - nema slika.
   --------------------------------------------------------------- */

.svc-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7.5rem 2rem 5rem;
}

/* putanja */
.svc-crumbs {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}
.svc-crumbs a { color: var(--gold); text-decoration: none; }
.svc-crumbs a:hover { text-decoration: underline; }
.svc-crumbs span { margin: 0 0.4rem; }
.svc-crumbs span:last-child { margin: 0; color: var(--text-secondary); }

/* zaglavlje - isti ritam kao naslov sekcije na naslovnoj */
.svc-head { text-align: center; margin-bottom: 3.5rem; }

.svc-glyph {
    font-size: clamp(3.6rem, 9vw, 5.4rem);
    line-height: 1;
    color: var(--gold);
    margin-bottom: 1.4rem;
    text-shadow: 0 0 30px var(--gold-glow);
}

.svc-head h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.2;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.svc-lead {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* tekst u panelu, isti kao kartica */
.svc-body {
    /* ista sirina kao mreza servisa ispod - 1200px iz .svc-wrap */
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 16px;
    padding: 2.8rem 2.4rem;
}
.svc-body p {
    font-size: 1.06rem;
    line-height: 1.95;
    color: var(--text-primary);
}

/* poziv na preuzimanje */
.svc-cta {
    margin: 2.5rem 0 5rem;
    padding: 2.6rem 2rem;
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 16px;
    background: var(--card-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.svc-cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.svc-cta__title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
}
.svc-cta__sub { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.6rem; }
.svc-cta__btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #101010;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.svc-cta__btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

/* ostali servisi - ista mreza kartica kao na naslovnoj */
.svc-around { margin-top: 1rem; }

.svc-around__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}
.svc-around h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 3.4vw, 2rem);
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 2.5rem;
}

.svc-around__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
}
.svc-around__grid li { display: flex; }
.svc-around__grid a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    width: 100%;
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 16px;
    padding: 2.2rem 1.4rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-around__grid a::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.svc-around__grid a:hover {
    border-color: rgba(212, 168, 67, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.1);
}
.svc-around__grid a:hover::before { opacity: 1; }

.svc-around__ikona {
    font-size: 1.9rem;
    line-height: 1;
    color: var(--gold);
}
.svc-around__ime {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--gold);
}

.svc-around__all { margin-top: 2.5rem; text-align: center; font-size: 0.95rem; }
.svc-around__all a { color: var(--text-secondary); text-decoration: none; }
.svc-around__all a:hover { color: var(--gold); }

@media (max-width: 600px) {
    .svc-wrap { padding: 6rem 1.2rem 3.5rem; }
    .svc-body { padding: 2rem 1.4rem; }
    .svc-cta  { padding: 2rem 1.3rem; }
}

/* duzi tekst u panelu */
.svc-body__uvod {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.32rem);
    line-height: 1.75;
    color: var(--gold-light);
}
.svc-body h2 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    color: var(--gold);
    margin: 2.6rem 0 0.9rem;
}
.svc-body h2:first-of-type { margin-top: 2.8rem; }

.svc-faq dt {
    font-weight: 600;
    color: var(--gold-light);
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}
.svc-faq dd {
    margin: 0;
    line-height: 1.9;
    color: var(--text-primary);
}
