/* =========================================
   1. GLOBALNA PODEŠAVANJA & VARIJABLE
   ========================================= */
:root {
    --beige-bg: #f4f1ea; 
    --beige-gradient: linear-gradient(to top, #F3F1EA 25%, rgba(243, 241, 234, 0.85) 60%, rgba(243, 241, 234, 0) 100%);
    --text-dark: #1A1A1A;      
    --text-grey: #4A4A4A;      
    --gold-accent: #B89643;    
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body, html {
    width: 100%;
    margin: 0;
    background-color: #050505; 
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden; 
    scroll-behavior: smooth;
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f1ea; 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-content {
    width: 450px; 
    max-width: 90%;
    height: auto;
}

.preloader-img {
    width: 100%;
    height: auto;
    animation: wipe-in-out 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes wipe-in-out {
    0% { opacity: 0; clip-path: inset(0 100% 0 0); }
    40% { opacity: 1; clip-path: inset(0 0 0 0); }
    60% { opacity: 1; clip-path: inset(0 0 0 0); }
    100% { opacity: 0; clip-path: inset(0 0 0 0); }
}

/* =========================================
   NEW LANGUAGE MENU (SR / EN / RU)
   ========================================= */
.lang-menu-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse; /* Opcije idu na gore */
    align-items: center;
}

.lang-current-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--beige-bg);
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lang-current-btn:hover {
    background-color: var(--gold-accent);
    color: #fff;
    transform: scale(1.05);
}

.lang-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Prikazi opcije kada se hoveruje kontejner */
.lang-menu-container:hover .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-opt-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--gold-accent);
    color: var(--text-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.lang-opt-btn:hover {
    background-color: var(--gold-accent);
    color: #fff;
}

/* BACK TO TOP (Stilizovano da ne smeta jeziku) */
#back-to-top {
    position: fixed;
    bottom: 260px; /* Iznad jezičkog dugmeta */
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--beige-bg);
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: none; /* Sakriveno dok se ne skroluje */
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

#back-to-top:hover {
    background-color: var(--gold-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   HEADER (NAVIGACIJA)
   ========================================= */
.site-header {
    width: 100%;
    background-color: var(--beige-bg);
    padding: 10px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(184, 150, 67, 0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HEADER LOGO */
.header-logo-wrapper {
    position: relative;
    overflow: hidden; 
    width: auto;     
    height: 80px;     
}

.base-logo {
    height: 100%;
    width: auto; 
    object-fit: contain; 
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.main-nav a:hover { color: var(--gold-accent); }

.nav-contact-btn {
    color: var(--text-dark) !important;
    border: 1px solid var(--text-dark);
    padding: 10px 25px;
    border-radius: 2px;
    transition: all 0.3s ease !important;
}

.nav-contact-btn:hover {
    background-color: var(--text-dark);
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px; height: 2px; background-color: var(--text-dark);
}

/* =========================================
   HERO VIDEO SEKCIJA
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ZLATNA LINIJA (Separacija od menija) */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold-accent);
    z-index: 10;
}

.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); 
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    max-width: 1200px;
}

.hero-title {
    font-family: 'Oswald', sans-serif; 
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn {
    padding: 18px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-hero-btn {
    background-color: #BF953F; 
    color: #1a1a1a;
}
.primary-hero-btn:hover {
    background-color: #dcb357;
    transform: translateY(-2px);
}

.secondary-hero-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}
.secondary-hero-btn:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
}

/* =========================================
   2. SEKCIJA: ACCORDION MENI (VERTICAL MODE)
   ========================================= */

/* Section Wrapper */
.accordion-section {
    width: 100%;
    background-color: var(--beige-bg);
    /* Osigurava da navigacija ne prelazi preko naslova kad se klikne link */
    scroll-margin-top: 80px; 
}

.gallery-container {
    display: flex;
    width: 100%;
    height: 90vh; /* Malo manje od 100vh da se vidi da ima još sadržaja dole */
    position: relative;
    z-index: 10;
}

.card {
    position: relative;
    flex: 1; /* Svi kreću jednako (20%) */
    min-width: 0;
    background-color: var(--beige-bg);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:last-child { border-right: none; }

/* Kad se pređe mišem ili klikne, kartica raste */
.card:hover { flex: 4; }
.card.active { flex: 4; } 

.split-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
    transition: all 0.7s ease;
    filter: grayscale(100%);
}

.split-top { top: 0; }
.split-bottom { bottom: 0; }

.card:hover .split-bg, .card.active .split-bg {
    filter: grayscale(0%);
    transform: scale(1.015);
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to top, 
        rgba(243, 241, 234, 0.9) 20%, 
        rgba(243, 241, 234, 0.6) 50%, 
        rgba(243, 241, 234, 0) 100%
    );
    z-index: 1;
    opacity: 0.85; /* Malo providnije dok je neaktivno */
    transition: opacity 0.5s;
}
.card:hover .overlay, .card.active .overlay { opacity: 1; }

.content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden; 
}

/* --- GLAVNI TRIK: NASLOV (H2) --- */
.content h2 {
    font-family: 'Marcellus', serif;
    color: var(--text-dark);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    
    /* VERTIKALNI MOD ZA SKUPLJENO STANJE (20% širine) */
    /* Tekst se rotira i čita odozdo ka gore - izgleda premium */
    writing-mode: vertical-rl; 
    transform: rotate(180deg); 
    text-align: left; 
    white-space: nowrap; /* Zabranjuje lomljenje reči */
    
    width: 100%;
    height: auto;
    display: block;
    
    transition: all 0.4s ease;
    opacity: 0.7; 
}

.description {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    overflow: hidden;
    /* Delay da se tekst pojavi tek kad se kartica raširi */
    transition-delay: 0.1s; 
}

/* --- AKTIVNO STANJE (HOVER / CLICK) --- */

.card:hover h2, .card.active h2 {
    /* VRAĆAMO U HORIZONTALU */
    writing-mode: horizontal-tb;
    transform: none;
    text-align: left;
    white-space: normal; 
    
    font-size: 2.2rem; 
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 10px;
    display: inline-block;
    width: auto;
    opacity: 1;
}

.card:hover .description, .card.active .description {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

.description p { margin-bottom: 15px; }

.highlight-quote {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    border-left: 3px solid var(--gold-accent);
    padding-left: 15px;
    margin-bottom: 20px !important;
    display: block;
}

.description ul { list-style: none; margin-top: 10px; }
.description ul li { margin-bottom: 8px; display: flex; align-items: flex-start; }
.description ul li::before { content: "✦"; font-size: 12px; color: var(--gold-accent); margin-right: 10px; margin-top: 3px; }
.description strong { color: var(--text-dark); font-weight: 700; }

.badge-soon {
    display: inline-block;
    background-color: var(--text-dark);
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-top: 5px;
}

.therapist-badge {
    display: inline-block;
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.teaser-text {
    font-style: italic;
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* RESPONSIVE FIX ZA ACCORDION */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        height: auto;
    }
    
    .card {
        min-height: 100px; /* Skupljeno stanje na mobilnom */
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    /* Na mobilnom ne želimo vertikalni tekst jer su kartice jedna ispod druge */
    .content h2 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .card:hover, .card.active {
        flex: auto; /* Reset flexa na mobilnom */
        min-height: 500px; 
    }
    
    .card:hover h2, .card.active h2 {
        font-size: 1.8rem;
    }
}

/* =========================================
   3. SEKCIJA: INFRACRVENA SAUNA
   ========================================= */
.sauna-section {
    width: 100%;
    background-color: #f4f1ea; 
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding: 80px 0;
}

.sauna-content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 60px; 
    padding: 0 40px;
    align-items: center;
}

.sauna-text-side {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sauna-heading-wrapper {
    margin-bottom: 40px;
    border-left: 2px solid var(--gold-accent);
    padding-left: 20px;
}

.sauna-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.sauna-title {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    font-size: 3.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0;
}

.sauna-text-side p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444; 
    margin-bottom: 30px;
    font-weight: 300;
}

.premium-highlight {
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(184, 150, 67, 0.3);
}

.sauna-image-side {
    flex: 1.2;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sauna-image-side::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-accent);
    border-radius: 20px;
    z-index: 0;
    display: block;
}

.sauna-image-side img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
    position: relative;
    z-index: 1;
}

/* =========================================
   4. SEKCIJA: PARALLAX BANER
   ========================================= */
.parallax-banner {
    background-image: url('Materijal/infinity-bg.jpg'); 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2); 
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 900px;
    backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.banner-title {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.banner-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 2;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 700px;
    margin: 0 auto;
}

.banner-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: lowercase;
    font-size: 1.3rem;
}

/* =========================================
   5. SEKCIJA: NAŠ TIM
   ========================================= */
.team-section {
    width: 100%;
    background-color: var(--beige-bg);
    padding: 100px 20px;
    position: relative;
    z-index: 5;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-premium {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.section-title-premium::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #bf953f;
    margin: 20px auto 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    row-gap: 70px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 25px;
    position: relative; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.team-bio-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    display: flex; align-items: center; justify-content: center;
    padding: 30px; opacity: 0; transition: all 0.4s ease;
    backdrop-filter: blur(2px); 
}
.team-bio-overlay p {
    color: #fff; font-family: 'Manrope', sans-serif;
    font-size: 0.95rem; line-height: 1.6; font-weight: 300;
    text-align: center; transform: translateY(20px); transition: transform 0.4s ease;
}

.team-bio-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-bio-overlay li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.team-bio-overlay li::before {
    content: "•";
    color: var(--gold-accent);
    position: absolute;
    left: 0;
    top: 0;
}

.team-card:hover .team-image-wrapper, .team-card.active .team-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 150, 67, 0.15);
}
.team-card:hover .team-image-wrapper img, .team-card.active .team-image-wrapper img { transform: scale(1.05); }
.team-card:hover .team-bio-overlay, .team-card.active .team-bio-overlay { opacity: 1; }
.team-card:hover .team-bio-overlay p,
.team-card:hover .team-bio-overlay ul,
.team-card.active .team-bio-overlay p,
.team-card.active .team-bio-overlay ul { transform: translateY(0); }


.team-info h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.team-role {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-separator {
    width: 0px;
    height: 1px;
    background-color: var(--gold-accent);
    margin: 0 auto;
    transition: width 0.4s ease;
}

.team-card:hover .team-separator, .team-card.active .team-separator {
    width: 40px;
}

/* =========================================
   SEKCIJA 6: KALKULATORI
   ========================================= */

.calculators-section {
    width: 100%;
    background-color: var(--beige-bg);
    padding: 0 20px 150px 20px; 
    position: relative;
    z-index: 5;
}

.calculators-container {
    max-width: 1200px;
    margin: 0 auto;
}

.calculators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 0;
    align-items: stretch;
}

.calc-box {
    background: #fff;
    padding: 50px;
    padding-bottom: 60px; 
    border-radius: 30px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(184, 150, 67, 0.1);
    position: relative;
    height: 100%; 
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.calc-view {
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: column; 
    flex-grow: 1; 
}

.hidden-view { display: none; opacity: 0; }
.active-view { display: flex; opacity: 1; } 

.calc-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 30px;
    text-align: left; 
}

.calc-icon-frame {
    width: 85px;  
    height: 85px; 
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
    flex-shrink: 0;
    overflow: hidden;
}

.calc-icon-frame img {
    width: 100%; 
    height: 100%;
    object-fit: contain;
    transform: scale(1.4); 
}

.calc-title-group h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0 0 5px 0; 
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.calc-subtitle {
    font-family: 'Manrope', sans-serif;
    color: var(--gold-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
}

.calc-description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.input-container-spacer, 
.result-content-spacer {
    margin-bottom: 20px;
}

.alignment-spacer {
    display: block;
    height: 85px; 
    width: 100%;
}

.calc-action-btn {
    width: 100%;
    margin-top: auto !important; 
    border: none;
    cursor: pointer;
    /* Dodato za bolji mobilni odziv */
    z-index: 10;
    position: relative;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    margin-bottom: 25px;
    width: 100%;
}

.input-group label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--gold-accent);
}

.simple-back-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    transition: all 0.3s;
}

.simple-back-btn:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.result-big-display {
    text-align: center;
    margin-bottom: 40px;
}

.res-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.result-big-display #bmi-value, 
.result-big-display #rm-resultValue {
    font-family: 'Marcellus', serif;
    font-size: 5rem;
    color: var(--gold-accent);
    line-height: 1;
}

.result-big-display .unit {
    font-size: 2rem;
    color: var(--text-dark);
}

.res-status {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recommendations, .stats-grid {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.rec-item, .stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
}

.rec-label, .stat-label { color: #666; }
.rec-val, .stat-val { color: var(--text-dark); font-weight: 700; }

/* =========================================
   SEKCIJA 7: CENOVNIK
   ========================================= */
#infinity-cenovnik-wrapper {
    width: 100%;
    min-height: 1100px;
    background-color: #f4f1ea;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
    padding-bottom: 80px;
    padding-top: 0px; 
}

.infinity-pricing-section { width: 100%; padding: 0 20px; }
.pricing-container { max-width: 1200px; margin: 0 auto; }

.pricing-section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    margin-top: 20px; 
}

.pricing-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #bf953f;
    margin: 15px auto 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #d1d1d1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #bf953f;
}

.card-header {
    padding: 30px 20px 10px 20px;
    text-align: center;
    color: #1a1a1a;
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #555;
}

.card-header .price { margin: 0; font-size: 2.2rem; font-weight: 900; color: #1a1a1a; }
.card-header .currency { font-size: 1.1rem; font-weight: 600; vertical-align: super; color: #777; }

.card-body {
    padding: 10px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: center;
}

.features {
    list-style: none; padding: 0; margin: 20px 0 30px 0;
    border-top: 1px solid #ccc; padding-top: 20px;
}
.features li {
    font-size: 0.95rem; color: #444; margin-bottom: 12px;
    font-weight: 500; display: flex; align-items: center; justify-content: center;
}
.features .check { color: #bf953f; margin-right: 8px; font-size: 1.1em; font-weight: bold; }

.gold-btn {
    display: inline-block; padding: 14px 35px;
    background: linear-gradient(to bottom, #bf953f, #aa771c);
    color: #1a1a1a; font-weight: 800;
    text-transform: uppercase; text-decoration: none;
    border-radius: 5px; transition: all 0.3s;
    letter-spacing: 1px; font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.gold-btn:hover { opacity: 0.9; color: #000; transform: translateY(-2px); }

.shiny-btn {
    display: inline-block; padding: 14px 35px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: #1a1a1a; font-weight: 900;
    text-transform: uppercase; text-decoration: none;
    border-radius: 5px; transition: all 0.3s;
    letter-spacing: 1px; font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(191, 149, 63, 0.4);
    border: 1px solid #b38728;
}
.shiny-btn:hover {
    background: linear-gradient(to right, #aa771c, #fbf5b7, #b38728, #fcf6ba, #bf953f);
    color: #000; transform: translateY(-2px);
}

.wide-card {
    grid-column: 1 / -1; flex-direction: row; align-items: center;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    box-shadow: 0 20px 40px -10px rgba(191, 149, 63, 0.4); border: none;
}
.wide-content { display: flex; width: 100%; justify-content: space-between; align-items: center; }
.wide-header, .wide-features, .wide-action { padding: 30px 40px; }
.wide-features p { color: #1a1a1a; font-weight: 700; font-size: 1.1rem; }
.wide-action .gold-btn { background: #1a1a1a; color: #bf953f; box-shadow: none; }
.wide-action .gold-btn:hover { background: #000; color: #fff; }

/* =========================================
   PRE-FOOTER & FOOTER (DARK MODE)
   ========================================= */
.site-footer-wrapper {
    background-color: #1A1A1A; 
    color: #ffffff;
    width: 100%;
    font-family: 'Manrope', sans-serif;
}

.pre-footer {
    padding: 80px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    align-items: start; 
}

/* LOGO U FOOTERU */
.footer-logo {
    height: auto;
    width: 100%;
    max-width: 280px; 
    margin-bottom: 20px; 
    margin-top: 0; 
}

.footer-desc {
    color: #cccccc; 
    font-size: 1.1rem; 
    line-height: 1.8;
    max-width: 400px;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
    margin-top: 0; 
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-links-col h4, 
.footer-contact-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.footer-links-col ul, 
.footer-contact-col ul {
    list-style: none; padding: 0; margin: 0;
}

.footer-links-col li, 
.footer-contact-col li { margin-bottom: 15px; }

.footer-links-col a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-links-col a:hover { color: var(--gold-accent); }

.footer-contact-col li {
    display: flex; align-items: center; gap: 15px; color: #a0a0a0; font-size: 0.9rem;
}

.footer-contact-col a {
    color: #a0a0a0; text-decoration: none; transition: color 0.3s;
}

.footer-contact-col a:hover { color: var(--gold-accent); }

.footer-contact-col .icon {
    color: var(--gold-accent); font-size: 1.1rem;
}

.bottom-bar {
    padding: 30px 20px;
    background-color: #121212; 
}

.bottom-bar-container {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
}

.copyright { color: #666; font-size: 0.8rem; }

/* =========================================
   SOCIAL ICONS - VELIČINA I IZGLED
   ========================================= */

.social-icons {
    display: flex;
    gap: 25px; /* Razmak između ikonica */
    align-items: center;
}

.social-icons a {
    display: block;
    /* LAPTOP VELIČINA (Duplo veće) */
    width: 45px; 
    height: 45px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    /* KLJUČNI DEO: Pretvara tamne ikonice u BĚLE */
    filter: grayscale(1) invert(1) brightness(2);
    
    /* Glatki prelaz za hover efekat */
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.1); /* Blago uvećanje na hover */
}

/* MOBILNI PRIKAZ (Usklađeno sa tekstom) */
@media (max-width: 900px) {
    .social-icons {
        gap: 20px; /* Malo manji razmak na telefonu */
        margin-top: 10px; /* Odvaja ih malo od copyright teksta */
    }

    .social-icons a {
        /* MOBILNA VELIČINA (U rangu sa tekstom) */
        width: 22px; 
        height: 22px;
    }
}
/* =========================================
   NOVE STRANICE (DODATAK)
   ========================================= */

/* GALERIJA STRANICA */
.gallery-page-section {
    padding: 100px 20px;
    background-color: var(--beige-bg);
    min-height: 80vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =========================================
   MASAŽA STRANICA - FINALNI BOX DIZAJN
   ========================================= */

.massage-page-section {
    padding: 80px 20px; 
    background-color: var(--beige-bg);
}

.massage-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    
    border-radius: 20px;        
    overflow: hidden;           
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}

/* LEVA STRANA - SLIKE */
.massage-images {
    flex: 0.9; 
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.massage-img {
    width: 100%;
    height: 50%; 
    object-fit: cover;
    display: block;
    object-position: center;
}

.massage-images .massage-img:first-child {
    object-position: top center;
}

/* DESNA STRANA - TEKST & DUGME */
.massage-text-col {
    flex: 1.1; 
    min-width: 300px;
    padding: 60px; 
    background-color: #fff; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    border-left: 1px solid rgba(184, 150, 67, 0.2);
}

.massage-title {
    font-family: 'Playfair Display', serif;
    font-style: italic; 
    font-weight: 400;
    font-size: 3.5rem; 
    color: var(--text-dark);
    line-height: 1.1;
    text-align: center;
    margin: 0; 
}

.massage-content {
    font-family: 'Manrope', sans-serif;
    color: var(--text-grey);
    font-size: 1.15rem; 
    line-height: 1.8; 
    text-align: justify;
    margin: 40px 0; 
}

.massage-content p {
    margin-bottom: 20px;
}

.massage-content p:last-child {
    margin-bottom: 0;
}

.massage-highlight {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.2rem;
}

/* Dugme */
.massage-btn-right {
    width: 100%;
    text-align: center;
    border-radius: 4px; 
    margin: 0; 
    padding: 18px 0; 
    font-size: 1.1rem;
    letter-spacing: 3px;
}

/* =========================================
   CONTACT FORM - UPDATE
   ========================================= */

.contact-form-section {
    padding: 100px 20px;
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Materijal/pozadinaforme.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.form-container {
    width: 100%;
    max-width: 600px; 
    background-color: #f4f1ea; 
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5); 
    border-radius: 20px; 
    border-top: none; 
}

.form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center; 
}

.form-group {
    margin-bottom: 20px;
}

/* Stilovi za inpute */
.infinity-input, 
.infinity-select {
    width: 100%;
    padding: 18px 20px;
    background-color: #ffffff; 
    border: 1px solid #e0e0e0;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
    border-radius: 8px; 
}

.infinity-input::placeholder {
    color: #888;
    font-weight: 500;
}

.infinity-input:focus, 
.infinity-select:focus {
    background-color: #fff;
    border-color: var(--gold-accent);
    box-shadow: 0 5px 15px rgba(184, 150, 67, 0.15);
}

/* Stil za select strelicu */
.infinity-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B89643' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

/* Submit dugme */
.submit-btn-wrapper {
    margin-top: 30px;
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: linear-gradient(to right, #bf953f, #aa771c);
    color: #1a1a1a;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px; 
}

.submit-btn:hover {
    background: linear-gradient(to right, #dcb357, #bf953f);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 150, 67, 0.2);
}

.submit-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-arrow {
    transform: translateX(5px);
}

/* Error poruke */
.error-msg {
    color: #d93025;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none; 
}

/* =========================================
   ANIMACIJE FORMULARA & SUCCESS MESSAGE
   ========================================= */
.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.success-message-container {
    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.8s ease forwards;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.success-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.8;
    max-width: 500px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#ips-qr-container {
    animation: fadeIn 0.5s ease;
}

/* =========================================
   RESPONSIVE (MOBILNI)
   ========================================= */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    
    .sauna-content-wrapper { flex-direction: column; gap: 40px; text-align: center; }
    
    .sauna-text-side { 
        padding: 0 20px; 
        order: 2; 
        align-items: center; 
        width: 100%;
        min-width: 0;
    }
    
    .sauna-image-side { order: 1; width: 100%; }
    .sauna-image-side::before { display: none; }
    .sauna-title { text-align: center; font-size: 2.5rem; }
    
    .sauna-heading-wrapper { 
        border-left: none; 
        text-align: center; 
        border-bottom: 2px solid var(--gold-accent); 
        padding-left: 0;
        padding-bottom: 15px;
        display: inline-block;
        margin-bottom: 30px;
    }
    
    .parallax-banner {
        background-attachment: scroll; 
        background-position: center;
    }
    
    .banner-title { font-size: 2.5rem; letter-spacing: 2px; }
    .banner-text { font-size: 0.9rem; }
    
    .section-title-premium { font-size: 2.5rem; }

    .calculators-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .calc-box {
        padding: 30px 20px;
        height: auto; 
        min-height: 500px;
    }
    .alignment-spacer { display: none; }

    .site-header { padding: 15px 20px; }
    
    .header-logo-wrapper { height: 50px; width: auto; }
    .base-logo { width: auto; height: 100%; }
    
    .main-nav { 
        display: none; 
        width: 100%; 
        left: 0;
        box-sizing: border-box; 
        padding: 20px;
        right: 0;
    } 
    .main-nav ul {
        flex-direction: column;
        gap: 15px; 
    }
    .main-nav a {
        font-size: 0.9rem; 
    }
    
    .mobile-menu-toggle { display: flex; }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand-col { align-items: center; }
    
    /* FIX ZA FOOTER LOGO NA MOBILNOM */
    .footer-logo { 
        margin: 0 auto 20px auto; 
        max-width: 320px; /* Bilo je 200px -> Povećano da dominira nad tekstom */
        width: 80%;       /* Sigurnosna mera da ne bude širi od ekrana na baš malim telefonima */
        margin-top: 0; 
    }
    
    .footer-desc { margin: 0 auto; text-align: center; margin-top: 0; }
    
    .footer-contact-col li { justify-content: center; }
    
    .bottom-bar-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-title { font-size: 3rem; }
    .hero-overlay {
        background: rgba(0, 0, 0, 0.27); 
    }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 3px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    
    .massage-container { flex-direction: column; }
    .massage-img { height: 40vh; }
    .massage-text-col { padding: 40px 20px; }
}

@media (max-width: 768px) {
    .gallery-container { flex-direction: column; height: auto; }
    .card { min-height: 100px; }
    .card:hover, .card.active { flex: 10; min-height: 400px; } 
    .content { padding: 20px; }
    .card:hover h2, .card.active h2 { font-size: 24px; }
    .description { font-size: 13px; }

    .pricing-grid { grid-template-columns: 1fr; }
    .wide-card { flex-direction: column; }
    .wide-content { flex-direction: column; text-align: center; }
    .wide-header, .wide-features, .wide-action { padding: 20px; }
    .pricing-section-title { font-size: 2.2rem; }

    .form-container {
        padding: 40px 20px;
    }
    .form-title {
        font-size: 2rem;
    }
    .contact-form-section {
        padding: 60px 20px;
    }
}

/* =========================================
   COPYRIGHT STYLING - HIERARCHY FINAL
   ========================================= */
.copyright-styled {
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

/* 1. Infinity Fitness - DOMINANTNO */
.cp-brand {
    color: #B89643; 
    font-weight: 700; 
    font-size: 0.9rem; /* Ostaje krupno i čitko */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Linija razdvajanja - Minimalistička */
.cp-divider {
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #333;
    opacity: 0.5;
}

/* 2. Agencija - MIKRO TEKST (Vrlo suptilno) */
.cp-agency {
    font-size: 0.6rem; /* Baš sitno (cca 10px) */
    color: #666;       /* Tamnije sivo da se manje vidi */
    text-transform: uppercase; /* Da ostane čitko iako je sitno */
    letter-spacing: 0.5px;
}

.cp-agency-name {
    font-family: 'Marcellus', serif; 
    color: #f4f1ea; /* Ivory bela */
    font-size: 0.7rem; /* Malo veće od uvoda, ali znatno manje od Infinity-ja */
    letter-spacing: 1px;
    font-weight: 400; 
    margin-left: 3px;
}

/* 3. Noves - MIKRO TEKST (Bež) */
.cp-noves {
    font-size: 0.6rem; /* Isto sitno kao agencija uvod */
    color: #d8d4c9;    /* Bež */
    opacity: 0.7;      /* Malo providno da bude još suptilnije */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-break { display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .copyright-styled {
        flex-direction: column;
        text-align: center;
        gap: 6px; 
    }
    
    .cp-divider { display: none; }
    .mobile-break { display: block; }
    
    .cp-agency-name {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }
}
/* =========================================
   FIX ZA RUSKI JEZIK NA MOBILNOM
   ========================================= */
@media (max-width: 900px) {
    .massage-text-col {
        width: 100%;
        max-width: 100%; /* Sprečava da element bude širi od ekrana */
        overflow-wrap: break-word; /* Ključno: Lomi dugačke reči ako ne staju */
        word-wrap: break-word;     /* Podrška za starije telefone */
        hyphens: auto;             /* Dodaje crtice (-) gde je gramatički moguće */
    }

    .massage-title {
        font-size: 2rem; /* Smanjujemo font naslova jer je "Терапевтический" predugačko */
        line-height: 1.2;
        word-break: break-word; /* Dozvoljava prelamanje naslova */
    }
    
    /* Osigurač za svaki slučaj da se ne pojavi horizontalni skrol */
    body, html {
        overflow-x: hidden;
    }
}
/* =========================================
   STIL ZA "NOTE" U KALKULATORU
   ========================================= */
.calc-note-styled {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: #666;
    background-color: rgba(184, 150, 67, 0.05); /* Veoma blaga zlatna pozadina */
    border-left: 2px solid #B89643; /* Zlatna linija levo */
    padding: 10px 15px;
    margin-top: 20px;
    font-style: italic;
    border-radius: 0 4px 4px 0;
    line-height: 1.5;
}

.calc-note-styled strong {
    color: #B89643;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-right: 5px;
}

/* =========================================
   USLOVI I PRAVNE STRANICE (UPDATED)
   ========================================= */

.legal-page-section {
    padding: 80px 20px;
    background-color: var(--beige-bg);
    min-height: 80vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 4px;
    
    /* ZLATNE LINIJE (GORE I DOLE) */
    border-top: 4px solid var(--gold-accent); 
    border-bottom: 4px solid var(--gold-accent); /* NOVO */
}

.legal-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.legal-date {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.legal-section-title {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--gold-accent);
    padding-left: 15px;
}

.legal-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
}

.legal-list-plain, .legal-list-bullet {
    margin-bottom: 20px;
    padding-left: 20px;
    font-family: 'Manrope', sans-serif;
    color: var(--text-grey);
    line-height: 1.7;
}

.legal-list-plain {
    list-style: none;
    padding-left: 0;
}

.legal-list-bullet li {
    margin-bottom: 8px;
    list-style-type: disc;
    margin-left: 20px;
}

/* --- NOVO: STIL ZA TABELU KOLAČIĆA --- */
.cookie-table-wrapper {
    overflow-x: auto; /* Omogućava skrol na mobilnom ako je tabela široka */
    margin-bottom: 30px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    text-align: left;
}

.legal-table th {
    padding: 15px;
    background-color: #f9f9f9;
    color: var(--text-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--gold-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.legal-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-grey);
    vertical-align: top;
}

.legal-table tr:hover td {
    background-color: #fafafa;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 40px 20px;
    }
    .legal-main-title {
        font-size: 1.8rem;
    }
    .legal-section-title {
        font-size: 1.1rem;
    }
}
/* =========================================
   FIX ZA MASAŽA & PT TAB NA MOBILNOM (FINALNO PORAVNANJE)
   ========================================= */
@media (max-width: 768px) {
    
    /* 1. OSNOVNI STIL ZA SVE STAVKE */
    .description ul li {
        display: block;
        position: relative;
        /* Ovo je ključno: Svi naslovi kreću sa ISTE tačke */
        padding-left: 25px; 
        margin-bottom: 12px;
        font-size: 0; 
    }

    /* 2. ZVEZDICA - MATEMATIČKI CENTAR */
    .description ul li::before {
        content: "✦"; 
        position: absolute;
        left: 0;
        /* (22px visina reda - 14px zvezda) / 2 = 4px */
        top: 4px; 
        font-size: 14px;
        line-height: 1; 
        color: var(--gold-accent);
    }

    /* 3. NASLOVI */
    .description ul li strong {
        display: block; 
        width: 100%;
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 700;
        line-height: 1.4; 
    }

    /* 4. POSLEDNJA STAVKA - "Stručnost i znanje" */
    .description ul li:last-child {
        font-size: 14px; 
        line-height: 1.6;
        color: var(--text-grey);
        
        /* UKLONJENO padding-left: 20px DA SE NE BI POMERALO LEVO */
        /* Sada nasleđuje 25px kao i ostali, pa će biti savršeno u liniji */
        
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    /* 5. RAZMAK IZMEĐU NASLOVA I TEKSTA */
    .description ul li:last-child strong {
        margin-bottom: 8px; 
    }

    /* --- COMING SOON STIL (DODAJ NA DNO CSS-a) --- */
.coming-soon-card {
    background-color: #e6e6e6;
    border: 1px solid #ccc;
    opacity: 0.6; /* Čini karticu bleđom */
    filter: grayscale(100%); /* Pretvara boje u sivo */
    pointer-events: none; /* Blokira hover efekte i klikove */
    transform: scale(0.98); /* Blago smanjena da deluje neaktivno */
    box-shadow: none !important;
}

.disabled-btn {
    background: #888 !important; /* Siva boja dugmeta */
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}
}