/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
    --blue-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --primary: #2563eb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --radius: 8px;
    --header-height: 75px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: var(--header-height);
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 100% visine vidljivog ekrana */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.btn {
    /* Use flex to center text perfectly */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Dimensions and spacing */
    padding: 10px 22px;
    min-height: 44px; /* Ensures a consistent height */
    
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1; /* Prevents text from shifting up or down */
}

.btn-blue {
    background: var(--blue-gradient);
    color: var(--white);
}

/* ==========================================================================
   NAVBAR LAYOUT
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   LOGO STYLING
   ========================================================================== */
.brand-logo {
    width: 35px; /* Forced small size */
    height: 35px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

/* Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 15px;
    transition: color 0.2s;
}

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

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

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.lang-switch a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Primjer: Tekst postaje tvoja "brand-blue" boja i dobiva malo deblji font */
.nav-links a.active-link {
    color: var(--primary);
}

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

/* ==========================================================================
   MOBILE MENU (Right Side Slide-out)
   ========================================================================== */

/* Hide checkbox and labels on desktop */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-cta, 
.lang-switch-mobile {
    display: none;
}

@media (max-width: 968px) {
    /* Hamburger Icon */
    .nav-toggle-label {
        display: block;
        position: relative;
    }
    
    .nav-toggle-label span, 
    .nav-toggle-label span::before, 
    .nav-toggle-label span::after {
        display: block;
        background: var(--text-main);
        height: 2px;
        width: 22px;
        position: relative;
        transition: 0.3s;
    }

    .nav-toggle-label span::before {
        content: '';
        position: absolute;
        top: -7px;
        width: 22px;
        height: 2px;
        background: var(--text-main);
    }

    .nav-toggle-label span::after {
        content: '';
        position: absolute;
        top: 7px;
        width: 22px;
        height: 2px;
        background: var(--text-main);
    }

    /* The Slide-out Drawer */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        
        /* Initial state: Hidden to the right */
        transform: translateX(100%);
    }

    /* Show menu when checkbox is checked */
    .nav-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }

    /* Burger to 'X' Animation */
    .nav-toggle:checked ~ .nav-toggle-label {
        position: fixed;
        right: 24px;
        top: 36px;
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* General Links in Mobile (excluding the button) */
    .nav-links a:not(.btn) {
        font-size: 1.1rem;
        padding: 15px 0;
        color: var(--text-main);
        text-decoration: none;
        border-bottom: 1px solid var(--border-color);
    }

    .lang-switch-mobile a:not(.btn) {
        padding: 1px 0;
    }

    .lang-switch-mobile a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    }

    /* Target the button specifically in mobile */
    .nav-links .btn.mobile-cta {
        display: inline-flex !important;
        margin-top: 30px;
        font-weight: 600;
        color: var(--white);
        /* This ensures it keeps your .btn styles exactly */
    }

    .lang-switch-mobile {
        display: block;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .nav-actions-desktop {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */
.hero {
    padding: 100px 0;
    background-color: var(--white);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero-content {
    flex: 1.2;
}

.hero-image {
    flex: 0.8;
}

/* Typography */
.hero-motto {
    font-size: 4rem; /* Larger, more impactful font */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

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

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

/* Button Group */
.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: #f0f7ff;
}

/* Hero Visual Box */
.image-box {
    width: 50%;
    aspect-ratio: 1 / 1; /* Square visual for agents */
    overflow: hidden; 
    display: flex;
}

.image-box img {
    width: 100%;
    height: 100%;
    /* 'cover' fills the square perfectly, 'contain' shows the whole image with padding */
    object-fit: cover; 
    display: block;
}

.image-box {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 45% !important; /* Malo manji logo da tree dođe do izražaja */
    z-index: 2;
    opacity: 0.9;
}






























/* --- Responsive Hero --- */
@media (max-width: 968px) {
    .hero {
        padding: 60px 0;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-motto {
        font-size: 2.75rem;
    }

    .hero-subtext {
        margin: 0 auto 32px;
        font-size: 1.1rem;
    }

    .hero-btns {
        justify-content: center;
    }

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

    .image-box {
    width: 100%;

}
}

/* ==========================================================================
   SOLUTIONS SECTION
   ========================================================================== */
.solutions {
    padding: 80px 0;
    background-color: var(--white);
}

.solutions-mega-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
}

.solutions-column {
    flex: 1;
}

.column-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    padding-left: 15px;
}

.vertical-divider {
    width: 1px;
    background-color: var(--border-color);
    align-self: stretch;
}














/* AI Features Section - Unikatan dizajn */
.ai-features-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.features-label {
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.features-main-title {
    color: #111827;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.features-lead-text {
    color: #4b5563;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 750px;
}

/* Grid layout */
.features-flex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Stil kartice - modificiran da se razlikuje od slike */
.feature-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #2563eb; /* Dodan akcentni border za karakter */
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

.feature-icon-wrapper {
    background-color: #eff6ff;
    color: #2563eb;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.feature-h3 {
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Tagovi */
.feature-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.f-tag {
    background-color: #f3f4f6;
    color: #1f2937;
    padding: 5px 12px;
    border-radius: 6px; /* Manje zaobljeno od originala */
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

/* Responzivnost */
@media (max-width: 900px) {
    .features-flex-grid {
        grid-template-columns: 1fr;
    }
    .features-main-title {
        font-size: 32px;
    }
}

















/* Solution Items */
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: default;
}

.solution-item-clickable {
    cursor: pointer;
}

.solution-item:hover {
    background-color: #f9fafb;
}

.item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-main);
}

.item-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.item-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Interactive Hover States */
.solution-item:hover .item-icon {
    border-color: var(--primary);
    background-color: #f0f7ff;
}

.solution-item:hover svg {
    color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE LOGIC
   ========================================================================== */
@media (max-width: 968px) {
    .solutions-mega-grid {
        flex-direction: column;
        gap: 40px;
    }

    .vertical-divider {
        display: none;
    }

    .column-label {
        padding-left: 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 8px;
    }
    
    .solution-item {
        padding: 10px 0; /* Less padding on mobile for tighter fit */
    }
}

/* ==========================================================================
   STATS PITCH SECTION
   ========================================================================== */

.stats-pitch {
    padding: 100px 0;
    background-color: #f8fafc; /* Subtle light gray/blue background */
    text-align: center;
}

.stats-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pitch Footer */
.pitch-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.pitch-footer p {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.research-results{
    font-size: 1.1rem;
    padding-bottom: 40px;
}

/* Responsive Stats */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */
.timeline-section {
    padding: 100px 0;
    background-color: var(--white);
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

/* The Horizontal Line (Desktop) */
.timeline-line {
    position: absolute;
    top: 25px; /* Centers with the numbers */
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-item h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 10px;
}

.timeline-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   RESPONSIVE TIMELINE
   ========================================================================== */
@media (max-width: 968px) {
    .timeline-line {
        display: none; /* Hide line on mobile */
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   SOLUTIONS PAGE
   ========================================================================== */


.sol-section {
    padding: 140px 0 100px;
}

.sol-header {
    text-align: center;
    margin-bottom: 50px;
}

.sol-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Tabs Navigation - Pill Style */
.sol-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    background: #f4f7fa;
    padding: 6px;
    border-radius: var(--radius);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--border-color);
}

.sol-tab-btn {
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.sol-tab-btn.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Logic for Tabs */
.sol-tab-content {
    display: none;
}

.sol-tab-content.active {
    display: block;
    animation: solFadeIn 0.4s ease forwards;
}

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

/* Redefining your original styles to fit the grid */
.solutions-mega-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.solutions-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vertical-divider {
    width: 1px;
    background-color: var(--border-color);
    align-self: stretch;
}

.solution-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius);
    transition: background 0.2s ease;
}

.solution-item:hover {
    background: #f9fafb;
}

.item-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--white);
}

.item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-main);
}

.item-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.item-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   INTEGRATIONS SECTION (Outline Style)
   ========================================================================== */

.sol-integrations {
    padding: 80px 0 120px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.sol-int-header {
    text-align: center;
    margin-bottom: 60px;
}

.sol-int-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
    color: var(--text-main);
}

.sol-int-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid za integracije */
.sol-int-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Kartica integracije */
.sol-int-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    width: 100%;
    max-width: 200px;
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    filter: grayscale(1); /* Pojačava neutralnost dok se ne hovera */
    opacity: 0.7;
}

.sol-int-card:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--primary);
    background-color: #f8fbff;
    transform: translateY(-5px);
}

.sol-int-icon {
    width: 40px;
    height: 40px;
    color: var(--text-main);
}

.sol-int-icon svg {
    width: 100%;
    height: 100%;
}

.sol-int-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Hover efekt na ikonu unutar kartice */
.sol-int-card:hover .sol-int-icon {
    color: var(--primary);
}

.sol-int-footer {
    text-align: center;
    margin-top: 60px; /* Razmak od ikona */
    padding: 20px 0;
    width: 100%;
    display: block;
}

.sol-int-footer p {
    font-size: 20px; /* Jasno i čitljivo */
    color: #303133; /* Moderna siva (muted) */
    line-height: 1.6;
    margin: 0;
    font-family: sans-serif; /* Osigurava clean izgled */
}

/* Podebljani crni tekst */
.sol-int-footer strong {
    color: #0f172a; 
    font-weight: 700;
}

/* Eksplicitna plava boja za integracije */
.sol-blue-text {
    color: #0066ff; /* Standardna vibrantna plava */
    font-weight: 600;
}

/* Mobilna verzija */
@media (max-width: 768px) {
    .sol-int-footer p {
        font-size: 18px;
        padding: 0 20px;
    }
}

/* Responzivnost */
@media (max-width: 768px) {
    .sol-int-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sol-int-title {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .solutions-mega-grid {
        flex-direction: column;
    }
    .vertical-divider {
        display: none;
    }
    .sol-tabs-nav {
        width: 100%;
        max-width: 400px;
    }
}

/* ==========================================================================
   IMPLEMENTATION PAGE
   ========================================================================== */

   .impl-process {
    padding: 100px 0;
    background: #ffffff;
}

.impl-grid {
    display: grid;
    /* Postavljamo na 4 kolone za desktop */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.impl-step {
    padding: 30px;
    border-left: 4px solid #f1f5f9;
    background: #ffffff;
    transition: all 0.3s ease;
}

.impl-step:hover {
    border-left-color: #0066ff;
    background: #f8fbff;
}

/* Poseban hover za profit fazu */
.impl-step-profit:hover {
    border-left-color: #059669 !important; /* Zelena boja za profit */
    background: #f0fdf4 !important;
}

.impl-badge {
    font-size: 11px;
    font-weight: 800;
    color: #0066ff;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.impl-step h4 {
    font-size: 19px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.impl-step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.impl-partnership {
    padding: 60px 0 100px;
    flex: 1;
}

.partnership-box {
    background: #f8fbff;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.partnership-content {
    flex: 2;
}

.partnership-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-value-partnership {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #0066ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.impl-cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 40px;
}

.impl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #0066ff; /* Tvoja eksplicitna plava */
    color: #ffffff;
    padding: 20px 45px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.impl-cta-btn:hover {
    background-color: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.impl-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 15px;
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
}

/* Prilagodba za mobitele */
@media (max-width: 480px) {
    .impl-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }
}

/* Mobile responsive */
@media (max-width: 992px) {
    .partnership-box {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
    
    .partnership-stats {
        width: 100%;
        flex-direction: row;
    }
    
    .stat-item {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .partnership-stats {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .impl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .impl-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

   .pricing-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch; /* Da sve kartice budu iste visine */
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    position: relative;
    border: 2px solid #0066ff;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
    background: #f8fbff;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066ff;
    color: #ffffff;
    padding: 6px 20px;
    border-radius:  var(--radius);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.setup-fee {
    font-size: 14px;
    color: #3e444d;
    font-weight: 400;
    margin-left: 5px;
    text-transform: uppercase;
}

.monthly-price {
    font-size: 18px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1; /* Gura gumb prema dnu */
}

.pricing-features li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li svg {
    color: #0066ff;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    padding: 16px;
    border: 2px solid #0066ff;
    border-radius:  var(--radius);
    color: #0066ff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #0066ff;
    color: #ffffff;
}

.pricing-btn:hover {
    background: #0052cc;
    border-color: #0052cc;
    color: #ffffff;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fbff;
    border: 2px solid #e2e8f0;
    border-radius:  var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #0066ff;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.05);
}

summary {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    list-style: none; /* Miče defaultni trokutić */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dodajemo naš plus/minus znak */
summary::after {
    content: '+';
    font-size: 24px;
    color: #0066ff;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Miče defaultni trokutić na Safariju */
summary::-webkit-details-marker {
    display: none;
}























/* Stilovi za Toggle Prekidač */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0066ff;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Stilovi za prikaz cijena */
.price-box {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price-value {
    transition: all 0.3s ease;
}

.setup-fee-badge {
    font-size: 14px;
    color: #64748b;
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.setup-fee-badge.featured {
    background: #0066ff1a;
    color: #0066ff;
}

/* Stil kada se setup fee ukine na godišnjoj razini */
.setup-fee-badge.waived {
    background: transparent;
    color: #22c55e;
    font-weight: bold;
    text-transform: uppercase;
}

.period {
    font-size: 16px;
    font-weight: normal;
    color: #64748b;
}

.total-year-saving{
    font-weight: 600;
}

/* ==========================================================================
   ABOUT US / CONTACT PAGE
   ========================================================================== */

.contact-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    flex-grow:1;
}

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

/* About Us Stilovi */
.about-content h2 {
    font-weight: 800;
}

.contact-info {
    margin-top: 40px;
    display:none
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #0f172a;
    font-weight: 600;
}

.info-item svg {
    color: #0066ff;
    width: 20px;
}

/* Form Stilovi */
.contact-form-card {
    background: #f8fbff;
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.contact-form-card h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form-card p {
    color: #64748b;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    margin-left: 8px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 16px;
    background: #ffffff;
    transition: border-color 0.3s ease;
    resize:none;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #0066ff;
}

.form-submit-btn {
    width: 100%;
    background: #0066ff;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit-btn:hover {
    background: #0052cc;
}
/* Pozadina koja prekriva cijeli ekran */
#successModal {
    display: none; /* Skriveno dok JS ne kaže drugačije */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.8); /* Tamna prozirna boja */
    backdrop-filter: blur(8px);
    z-index: 99999;
    
    /* Centriranje */
    align-items: center;
    justify-content: center;
}

/* Bijela kartica u sredini */
.modal-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 85%; /* Responzivno za mobitele */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    
    /* Animacija iskakanja */
    animation: modalShow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalShow {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #0066ff;
}

.modal-card h3 {
    margin: 0 0 10px 0;
    color: #0f172a;
    font-size: 24px;
}

.modal-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.modal-btn:hover {
    background: #0052cc;
}

/* Responzivnost */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-card {
        padding: 40px 30px;
    }
}

/* ==========================================================================
   SHOWCASE PAGE
   ========================================================================== */
.showcase-hero {
    padding: 120px 0 60px; /* Slightly more top padding since badge is gone */
    text-align: center;
    background: radial-gradient(circle at top, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.showcase-hero .hero-motto {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.showcase-hero .hero-subtext {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

/* ==========================================================================
   SHOWCASE AGENT
   ========================================================================== */
.agent-grid-section {
    padding: 60px 0 100px;
}

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

.agent-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.agent-card:hover {
    transform: translateY(-10px);
    border-color: #0066ff;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.08);
}

.agent-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.agent-icon svg {
    width: 30px;
    height: 30px;
    stroke: #0066ff;
}

/* Icon Background Colors */
.fitness-icon { background: rgba(0, 102, 255, 0.05); }
.hotel-icon { background: rgba(0, 102, 255, 0.05); }
.health-icon { background: rgba(0, 102, 255, 0.05); }
.food-icon { background: rgba(0, 102, 255, 0.05); }

.agent-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.agent-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    color: #0066ff;
    font-size: 0.95rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
    padding: 80px 0 120px;
    flex: 1;
}

.cta-box {
    background: linear-gradient(135deg, #0040a0 0%, #002879 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Button Variants for the CTA */
.btn-white {
    background: #ffffff;
    color: #0066ff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-white:hover {
    transform: scale(1.05);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #0066ff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .cta-content p {
        margin: 0 auto 20px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* --- UNIVERSAL META BAR STYLE --- */

.v-meta-bar {
    position: fixed;
    top: 75px; /* Ispod tvog navbar-a */
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #0052cc;
    border-bottom: 2px solid #00d9ff;
    z-index: 100;
    display: flex;
    align-items: center; /* Vertikalno centriranje unutar 50px */
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
}

.v-meta-container {
    width: 100%;
    max-width: 1200px;
    height: 100%; /* Koristi punu visinu bara za centriranje */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center; /* Horizontalno centriranje elemenata u grupu */
    align-items: center;     /* Vertikalno centriranje sadržaja */
    gap: 5rem;               /* Razmak između tri sekcije na webu */
}

/* --- SEKCIJE (Left, Center, Right) --- */

.v-meta-left, 
.v-meta-center, 
.v-meta-right {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Pulsirajući indikator */
.v-meta-pulse {
    width: 8px;
    height: 8px;
    background-color: #00d9ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d9ff;
    margin-right: 8px;
    animation: v-pulse-blink 1.5s infinite;
}

@keyframes v-pulse-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Tekstovi */
.v-meta-white-text,
.v-meta-label,
.v-meta-text {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1; /* Poništava defaultne razmake fonta */
    white-space: nowrap;
}

/* Code / Prompt stil */
.v-meta-code,
.v-meta-prompt {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: monospace;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Exit Gumb */
.v-meta-exit {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 12px;
    border-radius: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
/* --- RESPONZIVNOST (Mobilni u 3 reda) --- */

@media (max-width: 768px) {
    .v-meta-bar {
        height: auto; /* Bar se širi jer imamo 3 reda */
        padding: 15px 0;
    }

    .v-meta-container {
        flex-direction: column; 
        gap: 12px;
        height: auto;
    }

    /* Red 1: Live Demo */
    .v-meta-left {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    /* Red 2: Ask the AI + Prompt (Pored drugog, centrirano) */
    .v-meta-center {
        width: 100%;
        justify-content: center;
        flex-direction: row; 
        flex-wrap: wrap; 
        gap: 8px;
        height: auto;
    }

    .v-meta-text {
        font-size: 0.75rem;
    }

    .v-meta-prompt {
        font-size: 0.75rem;
        margin-left: 0;
    }

    /* Red 3: Exit Button */
    .v-meta-right {
        width: 100%;
        justify-content: center;
        height: auto;
    }
}

/* --- MOBILNI RASPORED (3 REDA) --- */

@media (max-width: 768px) {
    .v-meta-bar {
        height: auto;
        padding: 12px 0;
    }

    .v-meta-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Red 1: Live Demo */
    .v-meta-left {
        justify-content: center;
        width: 100%;
    }

    /* Red 2: Ask the AI + Prompt (Jedno pored drugog) */
    .v-meta-center {
        flex-direction: row; /* Forsiramo vodoravno */
        justify-content: center;
        flex-wrap: wrap; /* Ako je ekran baš premali, prebacit će se u novi red */
        gap: 8px;
        width: 100%;
    }

    .v-meta-text {
        font-size: 0.75rem;
    }

    .v-meta-prompt {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    /* Red 3: Exit Demo */
    .v-meta-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .v-meta-exit {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
}

/* =============================================================
   DEMO FITNESS
   ============================================================= */

/* --- GYM HERO SECTION --- */

.v-gym-hero {
    background-color: #0f0f0f;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #222;
}

.v-gym-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v-gym-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.v-gym-top-tag {
    color: #ff6b00;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.v-gym-main-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 5.5rem); 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.v-gym-accent {
    color: #ff6b00;
}

.v-gym-hero-text {
    color: #aaaaaa;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.v-gym-location-info {
    color: #c7c7c7;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #222;
    display: inline-block;
    padding-top: 20px;
}
/* --- PRICING SECTION --- */

.v-gym-pricing {
    background-color: #111111; /* Lagani kontrast u odnosu na hero */
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.v-gym-section-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.v-gym-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 stupca na desktopu */
    gap: 30px;
}

.v-gym-price-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Isticanje Pro plana */
.v-gym-price-card.featured {
    border: 2px solid #ff6b00;
    background-color: #1d1d1d;
}

.v-gym-badge-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #973f00;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.v-gym-plan-name {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.v-gym-amount {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.v-gym-amount span {
    font-size: 1rem;
    color: #c7c7c7;
    font-weight: 400;
}

.v-gym-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.v-gym-features li {
    color: #cccccc;
    font-size: 0.95rem;
    padding: 12px 0;
    border-top: 1px solid #252525;
}

.v-gym-features li:first-child {
    border-top: none;
}

.v-gym-pricing-note {
    color: #c7c7c7;
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    font-style: italic;
}

/* --- LOCATIONS SECTION (S Coming Soon stilom) --- */

.v-gym-locations {
    background-color: #0f0f0f;
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.v-gym-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.v-gym-loc-card {
    background-color: #151515;
    padding: 25px;
    border: 1px solid #222;
    border-radius: 4px;
    position: relative;
}

/* Poseban stil za Coming Soon */
.v-gym-loc-card.coming-soon {
    border: 1px dashed #444;
    background-color: #0d0d0d;
    opacity: 0.8;
}

.v-gym-city {
    color: #ff6b00;
    font-size: 0.9rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.v-gym-addr {
    color: #ffffff;
    font-size: 0.85rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.v-gym-status {
    color: #c7c7c7;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v-gym-status-alt {
    color: #00d9ff; /* Plava boja iz meta bara za kontrast */
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FUEL BAR GRID DESIGN --- */

.v-gym-fuel-bar {
    background-color: #0f0f0f;
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.v-gym-badge {
    background-color: #973f00;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 10px;
}

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

.v-gym-fuel-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.v-gym-fuel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.v-gym-fuel-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v-gym-fuel-price {
    color: #00d9ff;
    font-weight: 700;
    font-family: monospace;
}

.v-gym-fuel-desc {
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1; /* Gura stats na dno kartice */
}

.v-gym-fuel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #252525;
}

.v-stat {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.v-stat span {
    display: block;
    color: #c7c7c7;
    font-size: 0.65rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.v-gym-fuel-disclaimer {
    text-align: center;
    color: #444444;
    font-size: 0.75rem;
    margin-top: 30px;
}

/* --- EXPERTISE LIST STYLE --- */

.v-gym-expertise {
    background-color: #111111;
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.v-gym-expertise-list {
    max-width: 900px;
    margin: 0 auto;
}

.v-gym-expertise-item {
    display: flex;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid #222;
    gap: 30px;
}

.v-gym-expertise-item:last-child {
    border-bottom: none;
}

.v-gym-exp-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    color: #ff6b00;
}

.v-gym-exp-content {
    flex-grow: 1;
}

.v-gym-exp-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.v-gym-exp-content p {
    color: #888;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.v-gym-exp-tag {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 900;
    color: #ff6b00;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(255, 107, 0, 0.05);
}


/* --- FAQ SECTION --- */

.v-gym-faq {
    background-color: #111111;
    padding: 80px 0 120px 0;
}

.v-gym-faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.v-gym-faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #222;
}

.v-gym-faq-item:last-child {
    border-bottom: none;
}

.v-gym-faq-q {
    display: block;
    color: #ff6b00; /* Pitanja u boji akcenta radi lakšeg skeniranja */
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.v-gym-faq-a {
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONSIVE --- */

@media (max-width: 768px) {
    .v-gym-faq {
        padding: 60px 20px;
    }

    .v-gym-faq-q {
        font-size: 1rem;
    }

    .v-gym-faq-a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .v-gym-expertise-item {
        display: grid;
        /* Ikona i Naslov u prvom redu, Tag u gornjem desnom kutu */
        grid-template-columns: 50px 1fr auto;
        grid-template-areas: 
            "icon title tag"
            "empty desc desc";
        gap: 15px;
        padding: 30px 20px;
        text-align: left;
    }

    .v-gym-exp-icon {
        grid-area: icon;
        width: 40px;
        height: 40px;
    }

    .v-gym-exp-content h3 {
        grid-area: title;
        font-size: 1.1rem;
        margin: 0;
        align-self: center;
    }

    .v-gym-exp-content p {
        grid-area: desc;
        font-size: 0.9rem;
    }

    .v-gym-exp-tag {
        grid-area: tag;
        align-self: center;
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    /* Na jako malim mobitelima mičemo tag ili ga spuštamo */
    .v-gym-expertise-item {
        grid-template-columns: 45px 1fr;
        grid-template-areas: 
            "icon title"
            "desc desc";
    }
    
    .v-gym-exp-tag {
        display: none; /* Sakrivamo tag na uskim ekranima radi preglednosti */
    }
}

@media (max-width: 768px) {
    .v-gym-fuel-grid {
        grid-template-columns: 1fr; /* Na mobitelu jedna kartica po redu */
        padding: 0 10px;
    }

    .v-gym-fuel-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .v-gym-location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .v-gym-location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .v-gym-pricing-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 stupca na tabletima */
    }
}

@media (max-width: 768px) {
    .v-gym-pricing-grid {
        grid-template-columns: 1fr; /* 1 stupac na mobitelu */
        padding: 0 10px;
    }

    .v-gym-price-card {
        padding: 30px 20px;
    }

    .v-gym-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .v-gym-hero {
        padding-top: 160px; /* Kompenzacija za visoki mobilni meta bar */
    }

    .v-gym-main-title {
        letter-spacing: -1px;
    }

    .v-gym-location-info {
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* =============================================================
   DEMO RESTAURANT
   ============================================================= */

/* Container */
.v-rest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HERO SECTION --- */
.v-rest-hero {
    padding: 100px 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}

.v-rest-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.v-rest-subtitle {
    color: #c5a059;
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.v-rest-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #ffffff;
}

.v-rest-accent {
    font-style: italic;
    color: #c5a059;
}

.v-rest-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 500px;
}

.v-rest-meta-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

.v-rest-info-block strong {
    display: block;
    color: #c5a059;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.v-rest-info-block span {
    font-size: 0.9rem;
    color: #ffffff;
}

.v-rest-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    background-color: #151515;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #222222;
}

.v-rest-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.v-rest-img-placeholder-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #0d0d0d 25%, #1a1a1a 25%, #1a1a1a 50%, #0d0d0d 50%, #0d0d0d 75%, #1a1a1a 75%, #1a1a1a 100%);
    background-size: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
    opacity: 0.6;
}

/* --- MENU SECTION --- */
.v-rest-menu {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.v-rest-section-title {
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
    color: #c5a059;
    margin-bottom: 80px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.v-rest-menu-category {
    margin-bottom: 80px;
}

.v-rest-cat-title {
    font-size: 1.6rem;
    font-weight: 400;
    border-bottom: 1px solid #222222;
    padding-bottom: 12px;
    margin-bottom: 40px;
    color: #ffffff;
}

.v-rest-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
}

.v-rest-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.v-rest-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.v-rest-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #444444;
    margin: 0 12px;
}

.v-rest-item-price {
    font-weight: 700;
    color: #c5a059;
}

.v-rest-item-desc {
    color: #999999;
    font-size: 0.95rem;
    margin: 8px 0 12px 0;
}

.v-rest-tags {
    display: flex;
    gap: 8px;
}

.v-rest-tags span {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.v-tag-gf { border: 1px solid #a0d468; color: #a0d468; }
.v-tag-v  { border: 1px solid #ffce54; color: #ffce54; }
.v-tag-vn { border: 1px solid #4fc1e9; color: #4fc1e9; }

/* --- WINE SECTION --- */
.v-rest-wine {
    padding: 100px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.v-rest-wine-list {
    max-width: 900px;
    margin: 0 auto;
}

.v-rest-wine-category {
    margin-bottom: 60px;
}

.v-rest-wine-cat-title {
    color: #c5a059;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
}

.v-rest-wine-item {
    margin-bottom: 40px;
}

.v-rest-wine-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.v-rest-wine-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.v-rest-wine-dots {
    flex-grow: 1;
    border-bottom: 1px solid #222222;
    margin: 0 15px;
}

.v-rest-wine-price {
    font-weight: 700;
    color: #ffffff;
}

.v-rest-wine-meta {
    color: #c5a059;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 5px 0;
}

.v-rest-wine-desc {
    color: #999999;
    font-size: 0.9rem;
    font-style: italic;
}

.v-rest-info-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    border-top: 1px solid #1a1a1a;
}

.v-rest-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.v-rest-info-box {
    padding: 40px;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
}

.v-rest-info-title {
    color: #c5a059;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.v-rest-info-text {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.v-rest-info-list {
    list-style: none;
    padding: 0;
}

.v-rest-info-list li {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 5px;
}

.v-rest-info-list li strong {
    color: #888888;
    font-weight: 400;
}

/* --- RESPONSIVE --- */

@media (max-width: 768px) {
    .v-rest-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .v-rest-hero-layout { grid-template-columns: 1fr; text-align: center; }
    .v-rest-hero-content { order: 2; }
    .v-rest-image-wrap { order: 1; margin: 0 auto 30px auto; max-width: 500px; }
    .v-rest-description { margin-left: auto; margin-right: auto; }
    .v-rest-meta-info { grid-template-columns: 1fr; }
    .v-rest-menu-grid { grid-template-columns: 1fr; }
}

/* ========================================
   HOSPITALITY RESORT - REFINED HEX HERO
   ======================================== */
/* ========================================
   HOSPITALITY RESORT - SPA & WELLNESS HERO
   ======================================== */

.h-resort-hero {
    padding: 120px 0;
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animirani Gradijent Pozadine */
.h-resort-spa-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        -45deg, 
        #f4f7f8, 
        #e9eff1, 
        #fdfbf7, 
        #eef2f3
    );
    background-size: 400% 400%;
    animation: spaGradientShift 12s ease infinite;
}

@keyframes spaGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.h-resort-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.h-resort-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- SIMETRIČNI HEXAGONI (Slike) --- */
.h-resort-hex-gallery {
    position: relative;
    height: 550px;
    width: 100%;
}

.h-hex {
    position: absolute;
    width: 260px;
    height: 300px;
    background-color: #1a1a1a;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Desktop simetrija */
.h-hex-1 { transform: translate(0, 0); }               
.h-hex-2 { transform: translate(270px, 0); }           
.h-hex-3 { transform: translate(135px, 235px); }       

.h-hex-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

.h-hex-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.h-hex-placeholder span {
    color: #c5a059;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- SADRŽAJ --- */
.h-resort-label {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #b59050;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}

.h-resort-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #111111;
    line-height: 1.1;
    font-weight: 200;
    margin-bottom: 30px;
}

.h-resort-light { 
    font-weight: 800; 
    color: #000; 
}

.h-resort-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 60px;
    max-width: 450px;
}

.h-resort-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #eeeeee;
    padding-top: 40px;
}

.h-resort-stat strong { 
    display: block; 
    font-size: 1.6rem; 
    color: #111; 
    font-weight: 800; 
}

.h-resort-stat span { 
    font-size: 0.65rem; 
    color: #b59050; 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 1.5px; 
}

/* ========================================
   LIVING COLLECTION SECTION (Suites & Villas)
   ======================================== */

.r-suites {
    padding: 140px 0;
    background-color: #ffffff; /* Čista podloga za luksuzni fokus */
    font-family: 'Inter', sans-serif; /* Ili tvoj primarni font */
}

.r-suites-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.r-suites-header {
    text-align: center;
    margin-bottom: 90px;
}

.r-suites-subtitle {
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: #4d3c1f; /* Luxury Gold */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.r-suites-intro {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 200;
    color: #111;
    letter-spacing: -1px;
}

/* --- GRID LAYOUT --- */
.r-suites-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 50px;
}

.r-suite-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

/* --- IMAGE & PLACEHOLDER --- */
.r-suite-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background-color: #1a1a1a;
    overflow: hidden;
    margin-bottom: 30px;
}

.r-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.r-suite-card:hover .r-main-img {
    transform: scale(1.08);
}

.r-suite-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #1a1a1a; /* Tamni placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0; 
}

.r-suite-placeholder span {
    color: #c5a059;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- STATUS TAGS --- */
.r-status-tag {
    position: absolute;
    top: 25px; 
    right: 25px;
    background: #fff;
    padding: 8px 16px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    z-index: 3;
    text-transform: uppercase;
    color: #111;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.r-status-sold {
    background: #000000; /* Zlatna za "Fully Booked" */
    color: #fff;
}

/* --- INFO CONTENT --- */
.r-price-tag {
    font-size: 0.85rem;
    color: #6d4807;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.r-suite-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #111;
}

.r-suite-detail {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
    min-height: 3.4em; /* Osigurava poravnanje kartica */
}

.r-suite-meta {
    font-size: 0.75rem;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
}

.r-dot {
    margin: 0 12px;
    color: #b59050;
    font-size: 1.2rem;
    line-height: 0;
}

/* --- UNAVAILABLE STATE --- */
.r-suite-unavailable {
    pointer-events: none; /* Onemogućuje klik na nedostupne */
}

/* ========================================
   SPA RITUALS SECTION
   ======================================== */

.r-spa-rituals {
    padding: 160px 0;
    background-color: #fcfcfc; /* Blago "off-white" za mekoću */
    position: relative;
}

.r-spa-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.r-spa-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

/* --- VIZUALNI DIO (Preklapanje slika) --- */
.r-spa-visual {
    position: relative;
    height: 600px;
}

.r-spa-img-large {
    width: 80%;
    height: 100%;
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
}

.r-spa-img-small {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 45%;
    height: 300px;
    background-color: #1a1a1a;
    border: 15px solid #fcfcfc; /* Okvir koji odvaja sliku od pozadine */
    overflow: hidden;
}

.r-spa-img-large img, .r-spa-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.r-spa-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.r-spa-placeholder span {
    color: #c5a059;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* --- TEKSTUALNI DIO --- */
.r-spa-label {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: #6d4807;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.r-spa-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    font-weight: 300;
    color: #111;
    margin-bottom: 30px;
}

.r-spa-serif {
    font-style: italic;
    font-family: serif; /* Dodaje onaj "vogue" luksuzni dodir */
}

.r-spa-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.r-spa-list {
    list-style: none;
    padding: 0;
}

.r-spa-list li {
    font-size: 0.9rem;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.r-spa-list li::before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #b59050;
    margin-right: 15px;
}

/* ========================================
   SINGLE COLUMN KNOWLEDGE BASE (DOSSIER)
   ======================================== */

.r-dossier-mono {
    padding: 160px 0;
    background-color: #0a0a0a; /* Ultra dark */
    color: #fff;
    overflow: hidden;
}

.r-dossier-container {
    max-width: 900px; /* Užeg fokusa za jednu kolonu */
    margin: 0 auto;
    padding: 0 40px;
}

.r-dossier-header {
    text-align: center;
    margin-bottom: 120px;
}

.r-dossier-label {
    font-size: 0.7rem;
    letter-spacing: 8px;
    color: #b59050;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.r-dossier-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
}

/* --- COLUMN ROWS --- */
.r-dossier-column {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.r-dossier-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Velike SVG Ikone */
.r-dossier-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    color: rgba(181, 144, 80, 0.4); /* Suptilna zlatna */
}

.r-dossier-icon svg {
    width: 100%;
    height: 100%;
}

/* Text Content */
.r-dossier-text h3 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b59050;
    margin-bottom: 30px;
}

.r-dossier-data {
    list-style: none;
    padding: 0;
}

.r-dossier-data li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 450px; /* Osigurava širinu na desktopu */
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.r-dossier-data li span {
    color: #888;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.r-dossier-data li strong {
    font-weight: 400;
    color: #eee;
}

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
    .r-dossier-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .r-dossier-data li {
        min-width: 100%;
        flex-direction: column;
        gap: 5px;
    }

    .r-dossier-icon {
        width: 60px;
        height: 60px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .r-spa-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .r-spa-visual {
        height: 450px;
        order: 2; /* Tekst ide prvi na mobitelu */
    }
    .r-spa-img-small {
        display: none; /* Čistimo layout na manjim ekranima */
    }
    .r-spa-img-large {
        width: 100%;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .r-suites {
        padding: 80px 0;
    }
    .r-suites-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .r-suites-header {
        margin-bottom: 50px;
    }
    .r-suite-detail {
        min-height: auto;
    }
}

/* --- RESPONSIVE (Single image on mobile) --- */
@media (max-width: 1100px) {
    .h-resort-layout { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .h-resort-hex-gallery {
        display: flex;
        justify-content: center;
        height: auto;
        padding: 40px 0;
    }

    /* Prikaz samo jedne slike na mobitelu */
    .h-hex-2, .h-hex-3 {
        display: none;
    }

    .h-hex {
        position: relative;
        transform: none !important;
        width: 280px;
        height: 320px;
    }

    .h-resort-description { 
        margin-left: auto; 
        margin-right: auto; 
    }
}

/* ========================================
   MODERN GREEN DENTAL HERO - CUT-OFF FRAME
   ======================================== */

.d-hero-green {
    padding: 120px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.d-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.d-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* --- TEXT STYLING --- */
.d-hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a6741; /* Tamna kadulja */
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 25px;
}

.d-hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: #1a1c1a;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.d-highlight {
    color: #4a6741;
}

.d-hero-text {
    font-size: 1.1rem;
    color: #555e55;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 500px;
}

/* Specs list */
.d-hero-specs {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid #eef2ee;
}

.d-spec-item strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1c1a;
    margin-bottom: 5px;
}

.d-spec-item span {
    font-size: 0.85rem;
    color: #666666;
}

/* --- IMAGE & ACCENT FRAME --- */
.d-hero-visual {
    position: relative;
    padding: 30px; /* Prostor za okvire koji vire */
}

.d-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    z-index: 1;
}

.d-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2; /* Slika ide iznad okvira */
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Zajednički stil za kutne okvire */
.d-frame-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 8px solid #4a6741; /* Debeli zeleni okvir */
    z-index: 0; /* Ispod slike */
}

/* Gornji desni kut */
.d-frame-accent.top-right {
    top: -20px;
    right: -20px;
    border-bottom: none;
    border-left: none;
}

/* Donji lijevi kut */
.d-frame-accent.bottom-left {
    bottom: -20px;
    left: -20px;
    border-top: none;
    border-right: none;
}

/* ========================================
   DENTAL SERVICES & PRICING
   ======================================== */

.d-pricing {
    padding: 140px 0;
    background-color: #f9fbf9; /* Light mint background */
}

.d-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.d-pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.d-pricing-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #4a6741;
    text-transform: uppercase;
    font-weight: 700;
}

.d-pricing-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #1a1c1a;
    margin-top: 15px;
    font-weight: 800;
}

/* Grid Layout */
.d-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.d-price-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 2px;
    border: 1px solid #eef2ee;
    transition: transform 0.3s ease;
}

/* Isticanje srednje kartice */
.d-price-card.accent {
    border: 2px solid #4a6741;
    transform: translateY(-10px);
}

.d-price-icon {
    width: 40px;
    height: 40px;
    color: #4a6741;
    margin-bottom: 30px;
}

.d-price-card h3 {
    font-size: 1.4rem;
    color: #1a1c1a;
    margin-bottom: 35px;
    font-weight: 700;
}

/* Lista cijena */
.d-price-list {
    list-style: none;
    padding: 0;
}

.d-price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f4f0;
    font-size: 0.95rem;
    color: #555e55;
}

.d-price-list li:last-child {
    border-bottom: none;
}

.d-price-list li strong {
    color: #1a1c1a;
    font-weight: 700;
}

/* Footer info */
.d-pricing-footer {
    margin-top: 60px;
    text-align: center;
}

.d-pricing-footer p {
    font-size: 1rem;
    color: #495549;
    font-style: italic;
}

/* ========================================
   TEAM SECTION - STATIC & NON-CLICKABLE
   ======================================== */

.d-team {
    padding: 120px 0;
    background-color: #f9fbf9;
}

.d-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.d-team-header {
    text-align: center;
    margin-bottom: 80px;
}

.d-team-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #4a6741;
    text-transform: uppercase;
    font-weight: 700;
}

.d-team-title {
    font-size: 2.8rem;
    color: #1a1c1a;
    margin-top: 15px;
    font-weight: 800;
}

.d-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Image styling - No hover effects */
.d-team-visual {
    position: relative;
    margin-bottom: 30px;
    padding-right: 15px;
    padding-top: 15px;
}

.d-team-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
}

.d-specialty {
    display: block;
    font-size: 0.85rem;
    color: #4a6741;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.d-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555e55;
    margin-bottom: 25px;
}

/* Contact as static text instead of links */
.d-contact-static {
    font-size: 0.85rem;
    color: #1a1c1a;
    font-weight: 500;
    border-bottom: 1px solid #eef2ee;
    padding-bottom: 2px;
}

/* Cut-off accent */
.d-team-visual .d-cut-accent.top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: 3px solid #4a6741;
    border-bottom: none;
    border-left: none;
    z-index: 1;
}

/* ========================================
   REFINED GREEN AVENUE SIGNATURE
   ======================================== */

.ga-final {
    padding: 140px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.ga-container {
    max-width: 1100px;
    width: 100%;
    padding: 0 40px;
}

.ga-card {
    position: relative;
    background-color: #f9fbf9; /* Suptilna mint pozadina */
    padding: 80px 60px;
    text-align: center;
}

/* --- BRANDING --- */
.ga-brand-header {
    margin-bottom: 60px;
}

.ga-studio-name {
    font-size: 2.8rem;
    color: #1a1c1a;
    letter-spacing: -1px;
    font-weight: 800;
    margin: 0;
    text-transform: none;
}

.ga-studio-sub {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: #4a6741;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

/* --- INFO GRID --- */
.ga-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #e2e8e2;
    padding-top: 50px;
}

.ga-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #4a6741;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ga-info-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555e55;
    margin: 0;
}

/* --- CUT-OFF FRAME ACCENTS --- */
.ga-frame-edge {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #4a6741;
    pointer-events: none;
}

.ga-frame-edge.top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.ga-frame-edge.top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.ga-frame-edge.bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.ga-frame-edge.bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

/* --- MOBILE --- */
@media (max-width: 850px) {
    .ga-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ga-card {
        padding: 60px 30px;
    }
    .ga-frame-edge {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 900px) {
    .d-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .d-pricing-grid {
        grid-template-columns: 1fr;
    }
    .d-price-card.accent {
        transform: none;
    }
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .d-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .d-hero-text { margin: 0 auto 40px; }
    .d-hero-specs { justify-content: center; flex-direction: column; }
    .d-hero-visual { max-width: 500px; margin: 0 auto; }
}

   
/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #0f172a; /* Deep slate / Navy */
    color: #f8fafc;
    padding: 80px 0 0; /* No bottom padding because of bottom-bar */
    border-top: 1px solid #1e293b;
}

.main-footer .brand-name {
    color: var(--white);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8; /* Muted slate */
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-logo {
    background-color: #f8fafc;
    padding: 4px;
    border-radius: var(--radius);
}

.footer-bio {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 280px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b8c4dd;
    font-size: 0.85rem;
}

.social-links span {
    margin-left: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.social-links span:hover {
    color: var(--white);
}

/* ==========================================================================
   RESPONSIVE FOOTER
   ========================================================================== */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bio {
        margin: 20px auto 0;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
    PRIVACY POLICY
   ========================================================================== */

.privacy-section {
    padding: 60px 20px; /* Padding za mobitele */
    background-color: #ffffff;
    font-family: sans-serif; /* Koristi tvoj glavni font */
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.last-updated {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.policy-block {
    margin-bottom: 35px;
}

.policy-block h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-block p, .policy-block li {
    font-size: 1.1rem; /* Veći font za lakše čitanje na mobitelu */
    line-height: 1.7;
    color: #475569;
}

.policy-block ul {
    padding-left: 20px;
}

.cookie-note {
    margin-top: 50px;
    padding: 25px;
    background: #f8fbff;
    border-radius: 16px;
    border-left: 4px solid #0066ff;
}

/* PRILAGODBA ZA MOBITELE (Media Query) */
@media (max-width: 600px) {
    .privacy-section {
        padding: 40px 15px; /* Manji padding na rubovima */
    }
    
    .privacy-header h1 {
        font-size: 1.8rem; /* Manji naslov da ne puca u više redova */
    }
    
    .policy-block p, .policy-block li {
        font-size: 1rem; /* Standardna veličina za mobitel */
    }
}