* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #0b1120;
    color: #e2e8f0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    /* DODANO - za kontekst */
    z-index: 1;
}

/* ===== ANIMACIJE ===== */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animacije koje se aktiviraju */
.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.animate-slide-up {
    animation: slideInUp 1s ease forwards;
}

.animate-slide-down {
    animation: slideInDown 1s ease forwards;
}

.animate-fade {
    animation: fadeIn 1.5s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.8s ease forwards;
}

.animate-rotate {
    animation: rotateIn 0.8s ease forwards;
}

.animate-bounce {
    animation: bounceIn 0.8s ease forwards;
}

/* Hero specifične animacije */
.hero-badge-animate {
    animation: slideInLeft 0.8s ease forwards;
}

.hero-title-animate {
    animation: slideInLeft 1s ease forwards;
}

.hero-text-animate {
    animation: slideInLeft 1.2s ease forwards;
}

.hero-cta-animate {
    animation: slideInLeft 1.4s ease forwards;
}

.hero-stats-animate {
    animation: slideInLeft 1.6s ease forwards;
}

.hero-image-animate {
    animation: slideInRight 1.2s ease forwards, floatAnimation 4s ease-in-out infinite 1.2s;
}

/* Kontinuirane animacije */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* navbar - sticky i poluprovidan */
/* navbar - sticky i poluprovidan */
/* ===== HEADER - POLUPROZIRAN S BLUR EFEKTOM ===== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    background: rgba(11, 17, 32, 0.3); /* Jako prozirno na početku */
    backdrop-filter: blur(0px); /* Bez blura na početku */
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    padding: 0;
}

/* Kada je scrolled - header postaje manje proziran i dodaje se blur */
.navbar.scrolled {
    background: rgba(11, 17, 32, 0.85); /* 85% neprozirno */
    backdrop-filter: blur(10px); /* Zamućenje pozadine */
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.navbar.scrolled .nav-container {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.navbar.scrolled .logoIcon {
    transform: scale(0.95);
}

/* Container za sadržaj */
.main-content .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.main-content > .container {
    padding: 2rem 1.5rem 0;
}

.main-content {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* LOGO - ostaje isto */
.logoContainer {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== LOGO KAO LINK - BEZ CRTICE ===== */
.logoLink {
    text-decoration: none !important;
    display: inline-block;
    transition: opacity 0.3s ease;
    border-bottom: none !important;
}

.logoLink:hover {
    opacity: 1;
}

.logoLink:hover .logoIcon {
    transform: rotate(5deg);
}

.logoLink::after {
    display: none !important;
    content: none !important;
}

.logoIcon {
    width: 52px;
    height: 52px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px -8px #1e3a8a;
    transition: transform 0.2s;
    animation: pulseGlow 3s infinite;
}

.logoIcon:hover {
    transform: rotate(5deg);
}

.logoIcon span {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 0 #1e3a8a;
    letter-spacing: -2px;
    transform: rotate(-2deg);
}

.logoIcon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-top: 3px solid #fbbf24;
    border-left: 3px solid #fbbf24;
}

.logoIcon::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-bottom: 3px solid #fbbf24;
    border-right: 3px solid #fbbf24;
}

.logoText {
    display: flex;
    flex-direction: column;
}

.logoMain {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.logoSmall {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
    word-spacing: 3px;
}

/* Desktop navigacija */
.navLinks {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navLinks a {
    text-decoration: none;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.2s;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navLinks a:hover,
.navLinks a.active {
    color: #60a5fa;
}

.navLinks a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.navLinks a:hover::after,
.navLinks a.active::after {
    width: 100%;
}

/* ===== RESPONZIVNA NAVIGACIJA ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #94a3b8;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: #fbbf24;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: #fbbf24;
}

@media (max-width: 1000px) {
    .hamburger {
        display: flex;
    }

    .navLinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background: #1e293b;
        /* Svjetlija pozadina */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid #3b82f6;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
    }

    .navLinks.active {
        right: 0;
    }

    .navLinks a {
        font-size: 1.3rem;
        color: #ffffff;
        font-weight: 600;
    }

    .navLinks a:hover {
        color: #fbbf24;
    }

    .navLinks a::after {
        bottom: -8px;
        height: 3px;
        background: #fbbf24;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

@media (max-width: 700px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .navLinks {
        width: 100%;
        max-width: none;
    }

    .navLinks a {
        font-size: 1.2rem;
    }
}

/* hero sekcija */
.heroSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 3rem 0 5rem 0;
    flex-wrap: wrap;
}

.heroContent {
    flex: 1 1 500px;
}

.heroBadge {
    background: #1e2b48;
    color: #aac8ff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid #3b5688;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0;
}

.heroContent h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(145deg, #ffffff, #94b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
}

.highlight {
    color: #fbbf24;
    -webkit-text-fill-color: #fbbf24;
}

.heroContent p {
    font-size: 1.25rem;
    color: #b0c0da;
    max-width: 550px;
    margin-bottom: 2rem;
    opacity: 0;
}

.heroPrice {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.heroCta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
}

.btnPrimary {
    background: #3b82f6;
    border: none;
    color: white;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 8px 18px -6px #2563eb;
    position: relative;
    overflow: hidden;
}

.btnPrimary:hover {
    background: #2563eb;
    transform: scale(1.03);
}

.btnOutlineLight {
    background: transparent;
    border: 1.5px solid #4b5f7a;
    color: #dfe9fc;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.btnOutlineLight:hover {
    border-color: #60a5fa;
    color: white;
    background: rgba(96, 165, 250, 0.1);
}

.heroStats {
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
    color: #8ca3c0;
    opacity: 0;
}

.heroImage {
    flex: 1 1 350px;
    background: linear-gradient(145deg, #19273f, #101b30);
    padding: 1.5rem;
    border: 1px solid #2f4058;
    box-shadow: 0 30px 40px -20px #020308;
    text-align: center;
    opacity: 0;
}

.heroImage i {
    font-size: 10rem;
    color: #3b82f6;
    opacity: 0.8;
    filter: drop-shadow(0 10px 10px #1e3a8a60);
    animation: rotateSlow 20s linear infinite;
}

.codeSnippet {
    background: #0f1829;
    padding: 1.2rem;
    text-align: left;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #b9d0f0;
    border: 1px solid #253b5c;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.codeSnippet:hover {
    transform: scale(1.02);
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.codeSnippet span {
    color: #fbbf24;
}

.sectionTitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: #f0f4fa;
    opacity: 0;
}

.sectionTitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #a78bfa);
}

/* proces */
.processSection {
    margin: 5rem 0;
}

.processGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.processStep {
    background: #1e293b;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #334155;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 15px 25px -15px #02061780;
    opacity: 0;
}

.processStep:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px #3b82f6;
}

.stepIcon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.processStep:hover .stepIcon {
    transform: scale(1.2) rotate(5deg);
    color: #fbbf24;
}

.processStep h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.processStep p {
    color: #a0afc0;
    font-size: 1rem;
}

/* cjenik kartice */
.pricingGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.pricingCard {
    background: #1e293b;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 30px -10px #02061780;
    transition: transform 0.25s ease, box-shadow 0.3s, border-color 0.2s;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
}

.pricingCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -15px #1e3a8a80;
    border-color: #3b82f6;
}

.popular {
    border: 2px solid #3b82f6;
    position: relative;
    background: #263445;
}

.popularBadge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3b82f6;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px #2563eb80;
}

.cardHeader h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #e9edf2;
}

.cardHeader .subtitle {
    color: #9aa9b9;
    font-size: 0.95rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #facc15;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8;
    margin-left: 5px;
}

.featuresList {
    list-style: none;
    margin: 1.5rem 0 2rem;
    flex-grow: 1;
}

.featuresList li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1dbe8;
    font-size: 0.95rem;
}

.featuresList i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    transition: all 0.3s ease;
}

.featuresList li:hover i {
    transform: scale(1.2);
    color: #fbbf24;
}

.btn {
    display: inline-block;
    background: #334155;
    border: 1.5px solid #475569;
    color: #f1f5f9;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.btnPrimary {
    background: #3b82f6;
    border-color: #2563eb;
    color: white;
    box-shadow: 0 8px 16px -8px #1e3a8a;
}

.btnPrimary:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.btnOutline:hover {
    background: #3b4355;
    border-color: #64748b;
}

/* tablica */
.tableWrapper {
    background: #1e293b;
    padding: 2rem;
    box-shadow: 0 20px 35px -10px #020617;
    margin: 3rem 0 2rem;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    opacity: 0;
}

.tableWrapper:hover {
    border-color: #3b82f6;
    box-shadow: 0 25px 40px -15px #3b82f6;
}

.servicesTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
    color: #d6e0ef;
}

.servicesTable th {
    text-align: left;
    padding: 1.2rem 0.5rem 0.8rem 0.5rem;
    font-weight: 600;
    color: #b4c6e0;
    border-bottom: 2px solid #334155;
}

.servicesTable td {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #2d3a4f;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.servicesTable tr:hover td {
    background: #263445;
    color: #ffffff;
    transform: translateX(5px);
}

.servicesTable td:nth-child(2) {
    color: #fbbf24;
    font-weight: 600;
}

.badge {
    background: #2b3b58;
    color: #aac8ff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    margin-left: 8px;
    border: 1px solid #3b5688;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #3b5688;
    color: #ffffff;
    transform: scale(1.05);
}

.footnote {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #8b9bb5;
}

/* ===== KONTAKT SEKCIJA (unutar container-a) ===== */

/* ===== KONTAKT SEKCIJA (unutar container-a) ===== */
.contactCta {
    background: #1a2536;
    padding: 2rem 2rem;
    /* Unutarnji razmak ostaje isti */
    text-align: center;
    border: 1px solid #334155;
    margin: 0;
    /* Gornji i donji razmak = 0 */
    width: 100%;
}

.contactCta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.8rem;
}

.contactCta p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.contactBtn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.contactBtn:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px #3b82f6;
}

.contactInfo {
    color: #94a3b8;
    font-size: 1rem;
}

.contactInfo span {
    display: inline-block;
}

.contactInfo i {
    color: #fbbf24;
    margin-right: 6px;
}

.contactInfo .separator {
    margin: 0 12px;
    color: #334155;
}

/* Responsive za kontakt sekciju */
@media (max-width: 600px) {
    .contactCta {
        padding: 1.5rem 1rem;
        margin: 0;
        /* I na mobitelu 0 */
    }

    .contactCta h2 {
        font-size: 1.8rem;
    }

    .contactCta p {
        font-size: 1rem;
    }

    .contactInfo span {
        display: block;
        margin: 0.4rem 0;
    }

    .contactInfo .separator {
        display: none;
    }
}

/* footer */

/*
.footer {
    margin-top: 5rem;
    text-align: center;
    color: #7e8ea8;
    border-top: 1px solid #253141;
    padding-top: 2rem;
    font-size: 0.95rem;
    opacity: 0;
    width: 100%;
}

.footerIcons {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footerIcons a {
    color: #7486a0;
    font-size: 1.3rem;
    transition: color 0.2s;
    display: inline-block;
}

.footerIcons a:hover {
    color: #60a5fa;
    transform: translateY(-5px) scale(1.2);
}
    */

/* Osiguraj da je footer unutar containera */
.container .footer {
    width: 100%;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricingGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .heroSection {
        flex-direction: column;
        text-align: center;
    }

    .heroContent p {
        margin-left: auto;
        margin-right: auto;
    }

    .heroCta {
        justify-content: center;
    }

    .heroImage {
        width: 100%;
    }

    .heroStats {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .processGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .pricingGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .processGrid {
        grid-template-columns: 1fr;
    }

    .heroStats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== RADOVI / PORTFOLIO ===== */

.sectionSubtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.worksFilter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filterBtn {
    background: transparent;
    border: 1px solid #334155;
    color: #94a3b8;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.filterBtn:hover {
    border-color: #3b82f6;
    color: #fff;
}

.filterBtn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.worksGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.workCard {
    background: #1e293b;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
}

.workCard:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 30px -10px #3b82f6;
}

.workImage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.workImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workCard:hover .workImage img {
    transform: scale(1.1);
}

.workOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workCard:hover .workOverlay {
    opacity: 1;
}

.workLinks {
    display: flex;
    gap: 1rem;
}

.workLink {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.workCard:hover .workLink {
    transform: translateY(0);
    opacity: 1;
}

.workCard:hover .workLink:nth-child(2) {
    transition-delay: 0.1s;
}

.workLink:hover {
    background: #2563eb;
    transform: scale(1.1) !important;
}

.workContent {
    padding: 1.5rem;
}

.workCategory {
    display: inline-block;
    background: #2b3b58;
    color: #aac8ff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #3b5688;
}

.workContent h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.workContent p {
    color: #9aa9b9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.workTech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.workTech span {
    background: #0f1829;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #253b5c;
}

.worksCta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive za radove */
@media (max-width: 1000px) {
    .worksGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .worksGrid {
        grid-template-columns: 1fr;
    }

    .worksFilter {
        flex-direction: column;
        align-items: stretch;
    }

    .filterBtn {
        text-align: center;
    }
}

/* ===== PAGE HEADER (za radovi.php i slične stranice) ===== */
.pageHeader {
    text-align: center;
    margin: 3rem 0 3rem;
    padding: 2rem 0 1rem;
    position: relative;
}

.pageHeader h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(145deg, #ffffff, #94b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.pageHeader h1 i {
    -webkit-text-fill-color: #fbbf24;
    color: #fbbf24;
    margin-right: 10px;
}

.pageDescription {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.pageStats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pageStats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0c0da;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(30, 41, 59, 0.5);
    padding: 0.6rem 1.5rem;
    border: 1px solid #334155;
}

.pageStats span i {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* Responzivnost za page header */
@media (max-width: 768px) {
    .pageHeader h1 {
        font-size: 2.5rem;
    }

    .pageDescription {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .pageStats {
        gap: 1rem;
    }

    .pageStats span {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pageHeader h1 {
        font-size: 2rem;
    }

    .pageStats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .pageStats span {
        width: 100%;
        justify-content: center;
    }
}

/* ===== O NAMA STRANICA ===== */
.aboutStory {
    margin: 4rem 0;
}

.aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aboutContent {
    padding-right: 2rem;
}

.aboutText {
    color: #b0c0da;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.aboutFeatures {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aboutFeature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.aboutFeature i {
    font-size: 2rem;
    color: #fbbf24;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.8rem;
    border: 1px solid #3b82f6;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutFeature h4 {
    font-size: 1.3rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.aboutFeature p {
    color: #9aa9b9;
    line-height: 1.5;
}

.aboutImage {
    position: relative;
}

.aboutImage img {
    width: 100%;
    border: 1px solid #334155;
    box-shadow: 0 30px 40px -20px #020308;
}

.aboutImageBadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #3b82f6;
    padding: 1.5rem 2rem;
    text-align: center;
    border: 2px solid #fbbf24;
    box-shadow: 0 10px 20px -5px #1e3a8a;
}

.aboutImageBadge span {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.aboutImageBadge small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* Vrijednosti */
.valuesSection {
    margin: 6rem 0;
    text-align: center;
}

.valuesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* VRIJEDNOSTI - 3 stupca */
.valuesGridThree {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 jednaka stupca */
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    /* Malo uži za bolji izgled */
    margin-left: auto;
    margin-right: auto;
}

/* Prilagodi postojeće kartice za 3 stupca */
.valuesGridThree .valueCard {
    background: #1e293b;
    padding: 2.5rem 1.5rem;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.valuesGridThree .valueCard:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 30px -10px #3b82f6;
}

/* Responzivnost za 3 stupca */
@media (max-width: 900px) {
    .valuesGridThree {
        grid-template-columns: repeat(2, 1fr);
        /* 2 stupca na tabletu */
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .valuesGridThree {
        grid-template-columns: 1fr;
        /* 1 stupac na mobitelu */
        max-width: 100%;
    }
}

.valueCard {
    background: #1e293b;
    padding: 2.5rem 1.5rem;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    text-align: center;
}

.valueCard:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 30px -10px #3b82f6;
}

.valueIcon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valueIcon i {
    font-size: 2.5rem;
    color: #fbbf24;
}

.valueCard h3 {
    font-size: 1.4rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.valueCard p {
    color: #9aa9b9;
    line-height: 1.6;
}

/* Timeline */
.timelineSection {
    margin: 6rem 0 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #fbbf24);
}

.timelineItem {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 30px;
}

.timelineItem::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #fbbf24;
    border: 2px solid #3b82f6;
    z-index: 2;
}

.timelineYear {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.timelineContent {
    background: #1e293b;
    padding: 1.5rem;
    border: 1px solid #334155;
}

.timelineContent h3 {
    font-size: 1.3rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.timelineContent p {
    color: #9aa9b9;
    line-height: 1.6;
}

/* Tim sekcija */
.teamSection {
    margin: 6rem 0;
    text-align: center;
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.teamCard {
    background: #1e293b;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    overflow: hidden;
}

.teamCard:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 30px -10px #3b82f6;
}

.teamImage {
    overflow: hidden;
}

.teamImage img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teamCard:hover .teamImage img {
    transform: scale(1.1);
}

.teamInfo {
    padding: 1.5rem;
    text-align: left;
}

.teamInfo h3 {
    font-size: 1.3rem;
    color: #f8fafc;
    margin-bottom: 0.3rem;
}

.teamRole {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.teamBio {
    color: #9aa9b9;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.teamSocial {
    display: flex;
    gap: 1rem;
}

.teamSocial a {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.teamSocial a:hover {
    color: #fbbf24;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px) {

    .valuesGrid,
    .teamGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .aboutGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aboutContent {
        padding-right: 0;
    }

    .aboutImageBadge {
        bottom: -10px;
        right: -10px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 600px) {

    .valuesGrid,
    .teamGrid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 30px;
    }

    .aboutImageBadge span {
        font-size: 2rem;
    }
}

/* ===== ANIMACIJE ZA O-NAMA STRANICU ===== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Fade In varijante */
.fadeInUp {
    transform: translateY(50px);
}

.fadeInDown {
    transform: translateY(-50px);
}

.fadeInLeft {
    transform: translateX(-50px);
}

.fadeInRight {
    transform: translateX(50px);
}

.scaleIn {
    transform: scale(0.8);
}

/* Aktivirane klase */
.fadeInUp.visible,
.fadeInDown.visible,
.fadeInLeft.visible,
.fadeInRight.visible,
.scaleIn.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Dodatni hover efekti */
.valueCard {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.valueCard:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #fbbf24;
    box-shadow: 0 30px 40px -15px #3b82f6;
}

.valueCard:hover .valueIcon i {
    animation: pulse 1s infinite;
    color: #fbbf24;
}

.timelineItem {
    transition: all 0.3s ease;
}

.timelineItem:hover {
    transform: translateX(10px);
}

.timelineItem:hover .timelineContent {
    border-color: #fbbf24;
    box-shadow: 0 10px 20px -10px #3b82f6;
}

.aboutFeature {
    transition: all 0.3s ease;
}

.aboutFeature:hover {
    transform: translateX(10px);
}

.aboutFeature:hover i {
    animation: rotate 1s ease;
    color: #fbbf24;
}

.statItem {
    transition: all 0.3s ease;
    cursor: default;
}

.statItem:hover {
    transform: scale(1.05);
    background: rgba(59, 130, 246, 0.2);
    border-color: #fbbf24;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responzivnost za animacije */
@media (max-width: 768px) {
    .animate-on-scroll {
        transition: all 0.5s ease;
    }

    .fadeInUp {
        transform: translateY(30px);
    }

    .fadeInDown {
        transform: translateY(-30px);
    }

    .fadeInLeft {
        transform: translateX(-30px);
    }

    .fadeInRight {
        transform: translateX(30px);
    }
}

/* ===== TEHNOLOGIJE ===== */
.techSection {
    margin: 6rem 0;
    text-align: center;
}

.techDescription {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.techGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.techCard {
    background: #1e293b;
    padding: 1.5rem 1rem;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    text-align: center;
    cursor: default;
}

.techCard:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #fbbf24;
    box-shadow: 0 20px 30px -10px #3b82f6;
    background: #263445;
}

.techIcon {
    margin-bottom: 1rem;
}

.techIcon i {
    font-size: 3rem;
    transition: all 0.3s ease;
}

/* Boje ikona na hover */
.techCard:hover .fa-html5 {
    color: #e34c26;
}

.techCard:hover .fa-css3-alt {
    color: #264de4;
}

.techCard:hover .fa-js {
    color: #f0db4f;
}

.techCard:hover .fa-react {
    color: #61dafb;
}

.techCard:hover .fa-vuejs {
    color: #42b883;
}

.techCard:hover .fa-php {
    color: #777bb4;
}

.techCard:hover .fa-database {
    color: #fbbf24;
}

.techCard:hover .fa-node {
    color: #68a063;
}

.techCard:hover .fa-wordpress {
    color: #21759b;
}

.techCard:hover .fa-git-alt {
    color: #f34f29;
}

.techCard:hover .fa-figma {
    color: #a259ff;
}

.techCard:hover .fa-cloud {
    color: #ff9900;
}

.techCard h3 {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 500;
}

/* Responzivnost */
@media (max-width: 1000px) {
    .techGrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .techGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .techGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== NAŠA PRIČA - PORAVNANJE ===== */
.aboutStory {
    margin: 4rem 0;
}

.aboutImage img {
    display: block;
    /* Uklanja donji padding slike */
    width: 100%;
    height: auto;
}

.aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    /* Ovo je ključno - poravnava na vrh */
}

.aboutContent {
    padding-right: 2rem;
}

.aboutContent .sectionTitle {
    margin-top: 0;
    /* Osigurava da naslov počinje od vrha */
    opacity: 1;
    /* Ako je animacija, neka bude vidljivo */
}

.aboutText {
    color: #b0c0da;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.aboutImage {
    position: relative;
    align-self: start;
    /* Dodatno osiguranje za poravnanje */
}

.aboutImage img {
    width: 100%;
    border: 1px solid #334155;
    box-shadow: 0 30px 40px -20px #020308;
    display: block;
    /* Uklanja donji padding koji slike često imaju */
}

.aboutImageBadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #3b82f6;
    padding: 1.5rem 2rem;
    text-align: center;
    border: 2px solid #fbbf24;
    box-shadow: 0 10px 20px -5px #1e3a8a;
}

.aboutImageBadge span {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.aboutImageBadge small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* Responzivnost */
@media (max-width: 900px) {
    .aboutGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        /* Na mobitelima vraćamo centriranje */
    }

    .aboutContent {
        padding-right: 0;
    }

    .aboutImageBadge {
        bottom: -10px;
        right: -10px;
        padding: 1rem 1.5rem;
    }
}

/* ===== FOOTER - POTPUNI CSS (camelCase) ===== */
.footer {
    background: #0f172a;
    border-top: 1px solid #253141;
    border-bottom: 1px solid #334155;
    /* DODANO - donji border */
    border-left: 1px solid #1e293b;
    /* DODANO - lijevi border (suptilan) */
    border-right: 1px solid #1e293b;
    /* DODANO - desni border (suptilan) */
    padding: 4rem 2rem 2rem;
    margin-top: 1rem;
    /* Smanjeno s 5rem na 1rem */
    width: 100%;
    color: #94a3b8;
    opacity: 0;
    /* Za animaciju */
    animation: fadeInUp 1s ease forwards;
    /* DODANO - animacija */
    animation-delay: 0.3s;
    /* DODANO - malo kašnjenje */
}

.footerGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Logo dio */
.footerLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footerLogoIcon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    position: relative;
}

.footerLogoIcon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fbbf24;
    border-left: 2px solid #fbbf24;
}

.footerLogoIcon::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fbbf24;
    border-right: 2px solid #fbbf24;
}

.footerLogoText {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footerDescription {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 300px;
    line-height: 1.5;
}

/* Social ikone */
.footerSocial {
    display: flex;
    gap: 1rem;
}

.footerSocialLink {
    width: 36px;
    height: 36px;
    background: #1e293b;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footerSocialLink:hover {
    background: #3b82f6;
    border-color: #fbbf24;
    color: white;
    transform: translateY(-5px);
}

/* Navigacija */
.footerNav h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
    width: fit-content;
}

.footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerLinks li {
    margin-bottom: 0.8rem;
}

.footerLinks a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footerLinks a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

/* Kontakt */
.footerContact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
    width: fit-content;
}

.footerContactList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerContactList li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.footerContactList i {
    color: #fbbf24;
    font-size: 1rem;
    min-width: 20px;
    margin-top: 3px;
}

/* Copyright */
.footerBottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #253141;
    margin-top: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footerBottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.footerBottom i {
    color: #fbbf24;
    animation: heartbeat 1.5s ease infinite;
}

/* WhatsApp specifični stilovi */
.footerContactList li a[href*="wa.me"]:hover {
    color: #25D366 !important;
    transform: translateX(5px);
}

.footerContactList li i.fa-whatsapp {
    color: #25D366;
    font-size: 1.2rem;
}

/* Hover efekt za WhatsApp ikonu u social djelu */
.footerSocialLink .fa-whatsapp {
    transition: all 0.3s ease;
}

.footerSocialLink:hover .fa-whatsapp {
    color: #25D366;
    transform: scale(1.1);
}

/* Animacija za footer */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responzivnost za footer */
@media (max-width: 1000px) {
    .footerGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footerGrid {
        grid-template-columns: 1fr;
    }

    .footerNav h4,
    .footerContact h4 {
        width: 100%;
        text-align: center;
    }

    .footerLinks a:hover {
        transform: translateX(0);
    }
}

/* ===== MODAL PROZOR ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
}

.modalContent {
    background: #1a2536;
    max-width: 550px;
    /* Malo uži */
    margin: 1.5rem auto;
    /* Manji margin */
    border: 1px solid #3b82f6;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.4s ease;
    position: relative;
}

.modalHeader {
    padding: 1rem 1.5rem;
    /* Smanjen padding */
    border-bottom: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
}

.modalHeader h3 {
    color: white;
    font-size: 1.3rem;
    /* Manji font */
    font-weight: 600;
    margin: 0;
}

.modalClose {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.8rem;
    /* Manji X */
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0 0.3rem;
}

.modalClose:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.modalBody {
    padding: 1.5rem;
    /* Smanjen padding sa 2rem na 1.5rem */
}

/* Forma */
.kontaktForma {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Manji razmak između polja */
}

.formGroup {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    /* Manji razmak između labele i inputa */
}

.formGroup label {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
    /* Manji font labele */
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    background: #0f172a;
    border: 1px solid #334155;
    padding: 0.6rem 0.8rem;
    /* Manji padding (bio 0.8rem 1rem) */
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    /* Manji font */
    transition: all 0.3s ease;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
    color: #64748b;
    font-size: 0.9rem;
}

.formGroup select {
    cursor: pointer;
}

.formGroup select option {
    background: #0f172a;
    color: white;
}

/* Checkbox grupa */
.checkboxGroup {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    /* Manji gap */
    margin: 0.3rem 0;
    /* Dodatno smanjenje */
}

.checkboxGroup input[type="checkbox"] {
    width: 16px;
    /* Manji checkbox */
    height: 16px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkboxGroup label {
    font-size: 0.85rem;
    /* Manji font */
    color: #94a3b8;
}

.checkboxGroup a {
    color: #3b82f6;
    text-decoration: none;
}

.checkboxGroup a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

/* Submit gumb */
.submitBtn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    /* Manji padding (bio 1rem 2rem) */
    font-weight: 600;
    font-size: 1rem;
    /* Manji font */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.8rem;
    /* Manji margin */
    border: 1px solid transparent;
}

.submitBtn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -5px #2563eb;
    border-color: #fbbf24;
}

.submitBtn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.submitBtn:hover i {
    transform: translateX(5px);
}

/* Success message */
.modalSuccess {
    display: none;
    text-align: center;
    padding: 1.5rem;
    /* Smanjen padding */
}

.modalSuccess i {
    font-size: 4rem;
    /* Manja ikona */
    color: #10b981;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

.modalSuccess h4 {
    color: white;
    font-size: 1.5rem;
    /* Manji font */
    margin-bottom: 0.8rem;
}

.modalSuccess p {
    color: #94a3b8;
    font-size: 1rem;
    /* Manji font */
    margin-bottom: 1.5rem;
}

/* Responzivnost */
@media (max-width: 600px) {
    .modalContent {
        margin: 0.5rem auto;
    }

    .modalHeader h3 {
        font-size: 1.2rem;
    }

    .modalBody {
        padding: 1rem;
    }

    .checkboxGroup {
        flex-wrap: wrap;
    }
}

/* ===== RESPONZIVNA NAVIGACIJA ===== */

/* Hamburger meni */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #94a3b8;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: #fbbf24;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: #fbbf24;
}

/* Desktop navigacija */
.navLinks {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.navLinks a {
    text-decoration: none;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.2s;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navLinks a:hover,
.navLinks a.active {
    color: #60a5fa;
}

.navLinks a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.navLinks a:hover::after,
.navLinks a.active::after {
    width: 100%;
}

/* ===== RESPONZIVNOST ===== */
@media (max-width: 1000px) {
    .hamburger {
        display: flex;
    }

    .navLinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background: #0f172a;
        /* Čvrsta tamna pozadina */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid #334155;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        /* UKLONJENO: backdrop-filter */
    }

    .navLinks.active {
        right: 0;
    }

    .navLinks a {
        font-size: 1.3rem;
        color: #e2e8f0;
        /* Svjetlija boja za bolji kontrast */
        font-weight: 600;
        text-shadow: none;
        /* Uklonjeni eventualni shadow */
    }

    .navLinks a:hover {
        color: #fbbf24;
    }

    .navLinks a::after {
        bottom: -8px;
        height: 3px;
        background: #fbbf24;
        /* Žuta podcrtana za bolji kontrast */
    }

    /* Overlay (tamna pozadina) */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(0, 0, 0, 0.7); */
        /* Samo tamna, bez blur-a */
        z-index: 999;
        /* UKLONJENO: backdrop-filter */
    }
    body {
        overflow-x: hidden !important;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: row;
        /* Zadržavamo u redu */
        justify-content: space-between;
        align-items: center;
    }

    .logoContainer {
        flex: 1;
    }

    .navLinks {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .navLinks {
        width: 100%;
        max-width: none;
    }

    .navLinks a {
        font-size: 1.2rem;
    }
    .logoIcon {
        width: 40px;        /* Sa 52px na 40px */
        height: 40px;       /* Sa 52px na 40px */
    }
    
    .logoIcon span {
        font-size: 1.8rem;  /* Sa 2.2rem na 1.8rem */
    }
    
    .logoMain {
        font-size: 1.5rem;  /* Sa 2rem na 1.5rem */
    }
    
    .logoSmall {
        font-size: 0.7rem;  /* Sa 0.8rem na 0.7rem */
        letter-spacing: 1.5px; /* Manji razmak slova */
    }
    
    /* Ako želiš i manji razmak između loga i teksta */
    .logoContainer {
        gap: 10px;          /* Sa 15px na 10px */
    }
}

/* ===== KONTAKT SEKCIJA ===== */
.contactCta {
    background: #1a2536;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.contactCta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.contactCta p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contactBtn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 2rem;
}

.contactBtn:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px #3b82f6;
}

.contactInfo {
    color: #94a3b8;
    font-size: 1.1rem;
}

.contactInfo i {
    color: #fbbf24;
    margin-right: 8px;
}

.contactInfo .separator {
    margin: 0 15px;
    color: #334155;
}

/* Animacija za kontakt sekciju */
.contactCta.animate-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.contactCta.animate-on-scroll.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== BRZI LINKOVI ===== */
.linkBlocksSection {
    margin: 5rem 0;
    text-align: left;
}

.linkBlocksSection .sectionTitle {
    opacity: 1;
    margin-bottom: 2rem;
    display: inline-block;
}

.linkBlocksGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.linkBlock {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: inherit; /* Zadržava boju teksta */
}

.linkBlock:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 30px -10px #3b82f6;
}

.linkBlockIcon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.linkBlockIcon i {
    font-size: 2.5rem;
    color: #fbbf24;
    transition: color 0.3s ease;
}

.linkBlock:hover .linkBlockIcon i {
    color: #fbbf24; /* Zadržava žutu boju, možeš mijenjati ako želiš */
}

.linkBlock h3 {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.linkBlock p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.linkBlockArrow {
    color: #3b82f6;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.linkBlock:hover .linkBlockArrow {
    transform: translateX(5px);
    color: #fbbf24;
}

/* Responzivnost */
@media (max-width: 800px) {
    .linkBlocksGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .linkBlocksGrid {
        grid-template-columns: 1fr;
    }

    .linkBlock {
        padding: 1.5rem 1rem;
    }

    .linkBlock h3 {
        font-size: 1.3rem;
    }
}

/* ===== STRANICA U IZRADI ===== */
.underConstruction {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.constructionContainer {
    max-width: 800px;
    margin: 0 auto;
}

.constructionIcon {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.constructionIcon i {
    font-size: 4rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.constructionIcon i:nth-child(1) {
    color: #fbbf24;
    animation-delay: 0s;
}

.constructionIcon i:nth-child(2) {
    color: #3b82f6;
    animation-delay: 0.2s;
}

.constructionIcon i:nth-child(3) {
    color: #10b981;
    animation-delay: 0.4s;
}

.underConstruction h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(145deg, #ffffff, #94b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.constructionText {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.constructionText a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.constructionText a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Progress bar */
.constructionProgress {
    margin: 3rem auto;
    max-width: 400px;
}

.progressBar {
    width: 100%;
    height: 10px;
    background: #1e293b;
    border: 1px solid #334155;
    overflow: hidden;
    margin-bottom: 0.8rem;
    border-radius: 20px;
}

.progressFill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #fbbf24);
    width: 0%;
    transition: width 1s ease;
    border-radius: 20px;
}

.progressText {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Kontakt dio */
.constructionContact {
    margin: 3rem auto;
    padding: 2.5rem;
    background: #1a2536;
    border: 1px solid #334155;
    max-width: 500px;
    border-radius: 8px;
}

.constructionContact p {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.constructionContact .btnPrimary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Social ikone */
.constructionSocial {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.constructionSocial .socialIcon {
    width: 48px;
    height: 48px;
    background: #1e293b;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-size: 1.2rem;
}

.constructionSocial .socialIcon:hover {
    background: #3b82f6;
    border-color: #fbbf24;
    color: white;
    transform: translateY(-5px);
}

/* Animacije */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responzivnost */
@media (max-width: 768px) {
    .underConstruction {
        padding: 3rem 1rem;
    }

    .underConstruction h1 {
        font-size: 2.8rem;
    }

    .constructionIcon i {
        font-size: 3.2rem;
    }

    .constructionText {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .underConstruction h1 {
        font-size: 2.2rem;
    }

    .constructionIcon {
        gap: 1rem;
    }

    .constructionIcon i {
        font-size: 2.8rem;
    }

    .constructionText {
        font-size: 1rem;
        line-height: 1.6;
    }

    .constructionContact {
        padding: 1.8rem;
    }

    .constructionContact p {
        font-size: 1.1rem;
    }

    .constructionSocial {
        gap: 1rem;
    }

    .constructionSocial .socialIcon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .progressBar {
        height: 8px;
    }
}