/* === CSS VARIJABLE === */
:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --accent-gold: #f59e0b;
    --accent-hover: #d97706;
    --text-main: #334155;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --error-red: #ef4444;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* === RESET I OSNOVE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.light-bg { background-color: #f1f5f9; }
.dark-bg { background-color: var(--primary-dark); color: var(--white); }
.dark-bg h2, .dark-bg p { color: var(--white); }

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* === LAYOUT SISTEM === */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.half-width {
    flex: 1 1 45%;
    min-width: 300px;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* === DUGMAD === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.cookie-banner .btn-outline {
    color: #0b1017;
    border: 1px solid #0b1017;
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-text {
    background: none;
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* === ZNAČKE === */
.badge-18 {
    background-color: var(--error-red);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
}

/* === HEADER & NAVIGACIJA === */
#main-header {
    background-color: var(--primary-dark);
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

#main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--accent-gold);
}

.logo i {
    color: var(--accent-gold);
    margin-right: 5px;
}

#main-nav ul {
    display: flex;
    gap: 20px;
}

#main-nav a {
    color: var(--bg-light);
    font-weight: 500;
    font-size: 0.95rem;
}

#main-nav a:hover {
    color: var(--accent-gold);
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* === HERO SEKCIJA === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    /* Placeholder for background image */
    background: url('../img/hero.png') center/cover no-repeat;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin: 20px 0;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--border-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-disclaimer {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
}

/* === O NAMA === */
.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* === USLUGE === */
.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-gold);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

/* === KAKO FUNKCIONIŠE === */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 4px solid var(--bg-light);
}

.step-card h3 {
    margin-top: 15px;
}

/* === TOP BUKMEJKERI === */
.top-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.top-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-dark);
    color: var(--white);
}

.brand-logo {
    max-height: 40px;
    background: var(--white);
    padding: 5px;
    border-radius: 4px;
}

.rating {
    background: var(--accent-gold);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    color: var(--primary-dark);
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.bonus-info {
    background: #fffbeb;
    padding: 10px;
    border-left: 4px solid var(--accent-gold);
    margin: 15px 0;
    font-size: 0.9rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.contact-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info i {
    width: 20px;
    color: var(--primary-dark);
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

.card-footer {
    padding: 20px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

@media (min-width: 992px) {
    .top-cards-container {
        flex-direction: row;
    }
}

/* === PREDNOSTI === */
.advantage-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* === BEZBEDNOST === */
.security-image-placeholder {
    background: var(--secondary-dark);
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.massive-icon {
    font-size: 8rem;
    color: var(--accent-gold);
    opacity: 0.8;
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.check-list i {
    color: #10b981; /* green */
    margin-right: 10px;
    margin-top: 5px;
}

.disclaimer-box {
    background: #fee2e2;
    border: 1px solid #f87171;
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: #991b1b;
}

/* === FAQ ACCORDION === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* === RECENZIJE === */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* === KONTAKT === */
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.privacy-note {
    color: var(--text-light);
}

.contact-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-box i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-right: 15px;
    margin-top: 5px;
}

 

/* === MODALS & OVERLAYS === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.warning-icon {
    font-size: 3rem;
    color: var(--error-red);
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.modal-buttons .btn-outline {
    border-color: var(--border-color);
    color: var(--text-main);
}
.modal-buttons .btn-outline:hover {
    background: var(--bg-light);
}

.error-msg {
    color: var(--error-red);
    margin-top: 15px;
    font-weight: 600;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9998;
    border-top: 1px solid var(--border-color);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-content p {
    flex: 1 1 60%;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-settings-content {
    text-align: left;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-info h4 {
    margin-bottom: 5px;
}

.cookie-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
}

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

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

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

.toggle-switch input:checked + label {
    background-color: var(--accent-gold);
}

.toggle-switch input:disabled + label {
    background-color: #94a3b8;
    cursor: not-allowed;
}

.toggle-switch input:checked + label:before {
    transform: translateX(26px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    #main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        padding: 20px;
        display: none;
        flex-direction: column;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    #main-nav.active {
        display: flex;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .half-width {
        flex: 1 1 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}
    .sr-footer {
        background: #0b1017;
        color: #f4f4f4;
        font-size: 14px;
        line-height: 1.6;
        padding: 40px 20px 24px;
    }

    .sr-footer a {
        color: #f3cf55;
        text-decoration: none;
    }

    .sr-footer a:hover {
        text-decoration: underline;
    }

    .sr-footer-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .sr-footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 32px;
    }

    .sr-footer-brand {
        max-width: 520px;
    }

    .sr-footer-logo {
        display: inline-block;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .sr-footer-brand-text {
        margin: 0;
        opacity: 0.9;
    }

    .sr-footer-badges {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .sr-badge {
        min-height: 52px;
        border-radius: 999px;
        border: 1px solid rgba(243, 207, 85, 0.4);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(5, 8, 15, 0.7);
    }

    .sr-badge img {
        height: 60px;
        display: block;
    }

    .sr-badge-18 {
        background: #c0392b;
        border-color: #c0392b;
        color: #ffffff;
        font-weight: 700;
        font-size: 18px;
    }



    .sr-footer-columns {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        padding-top: 12px;
        padding-bottom: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sr-footer-col h4 {
        color: #e2e8f0;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .sr-footer-col p {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .sr-footer-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sr-footer-nav li {
        margin-bottom: 6px;
    }

    .sr-footer-nav a {
        font-size: 14px;
    }



    .sr-footer-bottom {
        margin-top: 18px;
    }

    .sr-footer-disclaimer {
        margin: 0 0 10px;
        font-size: 13px;
        opacity: 0.9;
    }

    .sr-footer-copy {
        margin: 0 0 6px;
        font-size: 13px;
        opacity: 0.85;
    }

    .sr-footer-en {
        margin: 0;
        font-size: 12px;
        opacity: 0.75;
    }



    @media (max-width: 992px) {
        .sr-footer-columns {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 640px) {
        .sr-footer-top {
            flex-direction: column;
        }

        .sr-footer-columns {
            grid-template-columns: 1fr;
        }

        .sr-footer {
            padding: 28px 16px 20px;
        }
    }.legal-content {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        .legal-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 15px;
            display: inline-block;
        }
        .legal-content h2 {
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--secondary-dark);
        }
        .legal-content p {
            margin-bottom: 15px;
            color: var(--text-main);
            line-height: 1.7;
        }
        .legal-content ul {
            margin-bottom: 20px;
            padding-left: 20px;
            list-style-type: disc;
        }
        .legal-content ul li {
            margin-bottom: 10px;
            color: var(--text-main);
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 30px;
            display: block;
        }.highlight-box {
            background-color: #f8fafc;
            border-left: 4px solid var(--accent-gold);
            padding: 15px 20px;
            margin: 25px 0;
            font-weight: 600;
            color: var(--primary-dark);
        }.cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .cookie-table th, .cookie-table td {
            border: 1px solid var(--border-color);
            padding: 12px;
            text-align: left;
        }
        .cookie-table th {
            background-color: #f8fafc;
            color: var(--primary-dark);
            font-weight: 600;
        }.highlight-box {
            background-color: #fee2e2;
            border-left: 4px solid var(--error-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }
        .highlight-box p {
            margin: 0;
            color: #991b1b;
            font-weight: 600;
        }
        .highlight-box i {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        .help-section {
            background-color: #f0fdf4;
            border: 1px solid #bbf7d0;
            padding: 25px;
            border-radius: var(--radius-md);
            margin-top: 30px;
        }
        .help-section h3 {
            color: #166534;
            margin-bottom: 15px;
        }
        .help-section p {
            color: #15803d;
            margin-bottom: 10px;
        }
        .help-section strong {
            color: #14532d;
        }