/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --success: #10b981;
    --white: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(120deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(124, 58, 237, 0.02) 25%, 
        rgba(248, 250, 252, 0.02) 50%, 
        rgba(37, 99, 235, 0.02) 75%, 
        rgba(124, 58, 237, 0.02) 100%);
    background-size: 400% 400%;
    animation: waveAnimation 12s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    filter: blur(40px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Header Styles */
header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .cta-button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.cta-button.secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    padding: 15px;
}

.website-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    z-index: 2;
}

.browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-header {
    background: #f1f5f9;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-content {
    padding: 30px;
}

.mockup-hero {
    text-align: center;
    margin-bottom: 30px;
}

.mockup-title {
    width: 80%;
    height: 20px;
    background: #e2e8f0;
    margin: 0 auto 10px;
    border-radius: 4px;
}

.mockup-subtitle {
    width: 60%;
    height: 15px;
    background: #f1f5f9;
    margin: 0 auto;
    border-radius: 4px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mockup-card {
    height: 80px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: 0;
    animation-delay: 4s;
}

.card-content {
    text-align: center;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.card-content p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-title {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-item span {
    color: var(--primary);
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: var(--dark);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -50%;
    left: -50%;
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.results-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.results-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.results-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

.result-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: countUp 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes countUp {
    to {
        opacity: 1;
    }
}

.result-item:nth-child(1) .result-number {
    animation-delay: 0.2s;
}

.result-item:nth-child(2) .result-number {
    animation-delay: 0.5s;
}

.result-item:nth-child(3) .result-number {
    animation-delay: 0.8s;
}

.result-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    font-weight: 600;
    color: var(--dark);
}

.feature:hover {
    transform: translateY(-5px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.large {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    text-align: center;
    color: #64748b;
    padding-top: 30px;
    border-top: 1px solid #334155;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-logos {
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.large,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .result-items {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        position: relative;
        margin: 10px;
        animation: none;
    }
    
    .hero-visual {
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .results-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    .hero-visual {
        height: auto;
    }
}

        /* Additional styles for services page */
        .services-hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }

        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .services-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .services-detail {
            padding: 100px 0;
            background: var(--light);
        }

        .service-detail-card {
            background: white;
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .service-detail-card:hover {
            transform: translateY(-5px);
        }

        .service-header {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 40px;
        }

        .service-icon-large {
            font-size: 4rem;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .service-title-section h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-title-section p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .service-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .feature-with-icon {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: var(--light);
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .feature-with-icon:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-content h4 {
            margin-bottom: 8px;
            color: var(--dark);
        }

        .feature-content p {
            color: var(--gray);
            line-height: 1.5;
        }

        .pricing-section {
            background: white;
            padding: 40px;
            border-radius: 16px;
            margin-top: 40px;
            border-left: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
    content: 'NAJPOPULARNIJE';
    position: absolute;
    top: 20px;
    right: -55px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 15px 60px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    width: 100px;
    border: none;
    outline: none;
}

        .pricing-section h3 {
            margin-bottom: 20px;
            color: var(--dark);
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .price-name {
            flex: 1;
            color: var(--dark);
            font-weight: 500;
        }

        .price-value {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .price-old {
            text-decoration: line-through;
            color: var(--gray);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .guarantee-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 20px;
        }

        .business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.business-type {
    text-align: center;
    padding: 20px 15px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.business-type:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.business-type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.business-type:hover .business-type-icon {
    transform: scale(1.1);
}
.business-type.many-more {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.business-type.many-more h4 {
    color: white;
}

.business-type.many-more:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

        .benefits-section {
            padding: 80px 0;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--light);
            border-radius: 16px;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.2rem;
            }

            .service-header {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }

            .service-icon-large {
                margin: 0 auto;
            }

            .service-detail-card {
                padding: 30px 20px;
            }

            .service-title-section h2 {
                font-size: 2rem;
            }

            .pricing-section::before {
                font-size: 0.7rem;
                right: -35px;
            }
        }

        /* Portfolio Styles */
        .portfolio-hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }

        .portfolio-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .portfolio-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .portfolio-filters {
            padding: 60px 0 40px;
            background: var(--light);
            text-align: center;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .filter-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .portfolio-grid {
            padding: 80px 0;
            background: white;
        }

        .portfolio-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .portfolio-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .portfolio-image {
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-image.restaurant {
            background-image: url('../slike/bella.jpg');
            background-position: center;
            background-size: 100%;
        }

        .portfolio-image.salon {
            background-image: url('../slike/glamour.jpg');
            background-position: center;
            background-size: 100%;
        }

        .portfolio-image.beauty {
            background-image: url('../slike/divine.jpg');
            background-position: center;
            background-size: 100%;
        }

        .portfolio-image.crafts {
            background-image: url('../slike/master.jpg');
            background-position: center;
            background-size: 100%;
        }

        .portfolio-image.medical {
            background-image: url('../slike/petrovic.jpg');
            background-position: center;
            background-size: 100%;
        }

        .portfolio-image.services {
            background-image: url('../slike/clean.jpg');
            background-position: center;
            background-size: 100%;
        }

        .portfolio-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .portfolio-content {
            padding: 30px;
        }

        .portfolio-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .portfolio-content p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .portfolio-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .portfolio-feature {
            background: var(--light);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--dark);
            font-weight: 500;
        }

        .portfolio-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: var(--light);
            border-radius: 12px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .portfolio-link:hover {
            gap: 12px;
        }

        .testimonials {
            padding: 100px 0;
            background: var(--light);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: serif;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--dark);
            line-height: 1.6;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .portfolio-hero h1 {
                font-size: 2.2rem;
            }

            .portfolio-items {
                grid-template-columns: 1fr;
            }

            .filter-buttons {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .portfolio-stats {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

         /* Contact Styles */
        .contact-hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }

        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .contact-section {
            padding: 100px 0;
            background: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .method-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .method-content h4 {
            margin-bottom: 8px;
            color: var(--dark);
        }

        .method-content p {
            color: var(--gray);
            margin-bottom: 5px;
        }

        .method-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: gap 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .method-link:hover {
            gap: 8px;
        }

        .business-hours {
            background: var(--light);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }

        .business-hours h4 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .contact-form-container {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-form-container h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .form-select {
            cursor: pointer;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .faq-section {
            padding: 80px 0;
            background: white;
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light);
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(37, 99, 235, 0.05);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--gray);
            line-height: 1.6;
        }

        .faq-answer.active {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        

        @media (max-width: 968px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.2rem;
            }

            .contact-info,
            .contact-form-container {
                padding: 30px 25px;
            }

            .contact-method {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .method-icon {
                margin: 0 auto;
            }
        }
 /* Modern Active State */
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.2); }
}

/* Za CTA button */
.nav-links .cta-button.active {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

/* Hover efekti */
.nav-links a:not(.active):hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-links a {
    transition: all 0.3s ease;
    position: relative;
}
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 18px 30px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        color: var(--dark);
        text-decoration: none;
    }

    .nav-links a:hover {
        background: #f8fafc;
    }

    .nav-links .cta-button {
        margin: 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--dark);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--dark);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* Osiguraj da su nav-links uvijek vidljivi na desktopu */
.nav-links {
    display: flex;
}

/* SAMO na mobile sakrij .nav-links */
@media (max-width: 768px) {
    .nav-links {
        display: flex; /* OVO JE KLJUČNO - ostane flex ali se pomjeri sa ekrana */
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-links.active {
        right: 0;
        display: flex; /* OVO JE BITNO */
    }
}

/* MOBILE FIX ZA KARTICE */
@media (max-width: 768px) {
    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Razmak između kartica */
        height: auto; /* Neka visina bude automatska */
        padding: 20px 0;
    }
    
    .website-mockup {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        animation: none;
        margin: 10px 0;
        width: 100%;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        position: relative;
        margin: 15px 0;
    }
}

/* Dodatno osiguraj da se ništa ne preklapa */
@media (max-width: 768px) {
    .hero-visual > * {
        position: relative !important;
        transform: none !important;
        margin: 15px 0 !important;
    }
}

/* SAMO ZA TELEFON - centriranje kontakt metoda */
@media (max-width: 767px) {
    .contact-methods {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .samocentar {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .contact-method {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .method-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .method-content h4,
    .method-content p,
    .method-link {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .method-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
/* PORUKE */

.message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message-loading {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}