/*
Theme Name: Moja Tema
Author: Milan
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0a0a0a;
    overflow-x: hidden;
    background: #fafafa;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-lang-wrapper {
  display: flex;
  align-items: center;
  gap: 5px; /* razmak između menija i language picker-a */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
    color: #525252;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0a0a0a;
}

.language-picker {
  margin-left: 5px; /* razmak od menija */
  position: relative; /* za dropdown */
  font-weight: 500;
  font-size: 0.95rem;
  color: #525252;
}

/* Stil dugmeta jezickog picker-a */
.language-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}

.language-button:hover,
.language-button:focus {
  color: #0a0a0a;
  outline: none;
}

/* Dropdown lista - možeš po želji da stilizuješ i sakriješ */
.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  margin-top: 0.3rem;
  list-style: none;
  padding: 0.5rem 0;
  display: none; /* skrivena po defaultu */
  z-index: 1000;
}

.language-dropdown li {
  padding: 0.3rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  white-space: nowrap;  
}

.language-dropdown li:hover {
  background: #eee;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0a0a0a;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animated Gradient Mesh Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fafafa;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: gradientShift 12s ease-in-out infinite;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(99, 102, 241, 0.05) 0%,
            transparent 25%,
            rgba(16, 185, 129, 0.03) 50%,
            transparent 75%,
            rgba(139, 92, 246, 0.04) 100%);
    animation: meshMove 15s linear infinite;
}

.gradient-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 30%),
        radial-gradient(ellipse at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 10%, rgba(245, 101, 101, 0.06) 0%, transparent 25%),
        radial-gradient(ellipse at 30% 90%, rgba(139, 92, 246, 0.07) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 30%);
    animation: meshFloat 20s ease-in-out infinite;
}

.gradient-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background:
        conic-gradient(from 0deg at 25% 25%,
            rgba(99, 102, 241, 0.08) 0deg,
            transparent 90deg,
            rgba(16, 185, 129, 0.06) 180deg,
            transparent 270deg);
    animation: conicRotate 25s linear infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background:
            radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    }

    33% {
        background:
            radial-gradient(circle at 70% 20%, rgba(16, 185, 129, 0.18) 0%, transparent 55%),
            radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.14) 0%, transparent 50%),
            radial-gradient(circle at 90% 40%, rgba(99, 102, 241, 0.10) 0%, transparent 45%);
    }

    66% {
        background:
            radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.16) 0%, transparent 52%),
            radial-gradient(circle at 85% 25%, rgba(99, 102, 241, 0.13) 0%, transparent 48%),
            radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.11) 0%, transparent 53%);
    }
}

@keyframes meshMove {
    0% {
        transform: translateX(-10%) translateY(-5%) scale(1.05);
    }

    50% {
        transform: translateX(5%) translateY(3%) scale(1.08);
    }

    100% {
        transform: translateX(-10%) translateY(-5%) scale(1.05);
    }
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(-20%, -20%) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(-15%, -25%) rotate(1deg) scale(1.05);
    }

    50% {
        transform: translate(-25%, -15%) rotate(-1deg) scale(0.98);
    }

    75% {
        transform: translate(-18%, -22%) rotate(0.5deg) scale(1.02);
    }
}

@keyframes conicRotate {
    0% {
        transform: translate(-25%, -25%) rotate(0deg);
    }

    100% {
        transform: translate(-25%, -25%) rotate(360deg);
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    color: #525252;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #0a0a0a;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #262626;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Enhanced Geometric Elements */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    left: 5%;
    animation: floatEnhanced 10s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(147, 51, 234, 0.08));
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 65%;
    right: 8%;
    animation: floatEnhanced 8s ease-in-out infinite reverse;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.08));
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 20%;
    animation: floatEnhanced 12s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.10), rgba(239, 68, 68, 0.06));
}

@keyframes floatEnhanced {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
        opacity: 0.8;
    }

    66% {
        transform: translateY(-8px) rotate(-2deg) scale(0.98);
        opacity: 0.7;
    }
}

/* Subtle grid overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 1;
}

/* Modern Section Styling */
.section {
    padding: 6rem 2rem;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    padding-bottom: 1rem;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #525252;
    margin-bottom: 3rem;
    max-width: 600px;
}

.centered {
    text-align: center;
    margin: 0 auto;
}

/* About Section - Bento Grid Style */
.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: #fafafa;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.about-card p {
    color: #525252;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Process Section - Modern Timeline */
.process-section {
    background: #0a0a0a;
    color: white;
}

.process-section .section-title {
    color: white;
}

.process-section .section-subtitle {
    color: #a3a3a3;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #878787;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.process-step p {
    color: #a3a3a3;
    line-height: 1.6;
}

/* Methodology Grid */
.methodology-section {
    background: #fafafa;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.methodology-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.methodology-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.methodology-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.methodology-card p {
    color: #525252;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Expertise Section - Modern List Design */
.expertise-section {
    background: #e5e5e5;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.expertise-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.expertise-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.expertise-content p {
    color: #525252;
    line-height: 1.6;
}

/* Team Section - Modern Cards */
.team-section {
    background: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.member-role {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: #525252;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-expertise span {
    background: #f3f4f6;
    color: #374151;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Partners Section - Modern Split Layout */
.partners-section {
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.partners-card {
    background: #fafafa;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0a0a0a;
}

.partners-list h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.partners-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.partners-list li {
    color: #525252;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.partners-list li::before {
    content: '→';
    color: #6366f1;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Results Section - Modern Metrics Grid */
.results-section {
    background: #0a0a0a;
    color: white;
}

.results-section .section-title {
    color: white;
}

.results-section .section-subtitle {
    color: #a3a3a3;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #10b981);
}

.result-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.result-metric {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0;
    background: linear-gradient(135deg, #10b981, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-description {
    color: #a3a3a3;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section - Modern Form */
.contact-section {
    background: #fafafa;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input,
.form-select {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
    color: #0a0a0a;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    padding: 1rem 2rem;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background: #262626;
    transform: translateY(-1px);
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
}

/* Footer - Minimal Design */
.footer {
    background: white;
    color: #525252;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.footer-section p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #525252;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #0a0a0a;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a:hover svg {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #a3a3a3;
    font-size: 0.9rem;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .geometric-shape {
        opacity: 0.6;
    }

    .shape-1 {
        width: 120px;
        height: 120px;
    }

    .shape-2 {
        width: 80px;
        height: 80px;
    }

    .shape-3 {
        width: 60px;
        height: 60px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 1rem;
    }

    .expertise-item {
        gap: 1rem;
        padding: 1rem 0;
    }

    .expertise-left .expertise-item:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-grid {
        gap: 1rem;
        margin-top: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    .section {
        padding: 2rem 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
        top: 0.5rem;
        right: 1rem;
    }

    .process-step h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .process-step p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .section-title {
        padding-bottom: 0.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        margin-bottom: 0.75rem;
    }

    .about-card p {
        line-height: 1.6;
    }

    .hero {
        min-height: 70vh;
        padding: 1.5rem 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1rem;
        font-size: 30px;
        line-height: 1.3;
        text-align: center;
    }

    .team-grid {
        gap: 1rem;
        margin-top: 2rem;
    }

    .team-member {
        padding: 1rem;
    }

    .member-photo {
        padding: 0;
        margin-bottom: 0;
    }

    .partners-grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .partners-card {
        padding: 1rem;
    }

    .methodology-section .methodology-grid {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    .methodology-section .methodology-card {
        padding: 1rem !important;
    }

    .methodology-section .methodology-icon {
        margin-bottom: 0 !important;
        padding: 0;
    }

    .contact-form {
        margin: 1.5rem auto 0;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 0;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-section h4 {
        margin-bottom: 0.5rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#nf-form-2-cont,
#nf-form-3-cont {
  max-width: 600px !important;
  margin: 0 auto !important;
  padding: 2rem !important;
  padding-bottom: 0 !important;
  background: #fafafa !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

/* Sakrij labelu i poruku required */
#nf-form-2-cont label,
#nf-form-3-cont label,
#nf-form-2-cont .nf-form-fields-required,
#nf-form-3-cont .nf-form-fields-required,
.nf-before-form-content {
  display: none !important;
}

/* Postavi grid na nf-fields-wrap */
#nf-form-2-cont nf-fields-wrap,
#nf-form-3-cont nf-fields-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  row-gap: 0 !important;
  column-gap: 1rem !important;
  box-sizing: border-box !important;
  justify-content: center !important;
}

/* Svaki nf-field zauzima jednu grid ćeliju i ima marginu ispod za razmak */
#nf-form-2-cont nf-fields-wrap > nf-field,
#nf-form-3-cont nf-fields-wrap > nf-field {
  grid-column: span 1 !important;
  margin-bottom: 0 !important;
}

/* Polja koja treba da zauzmu obe kolone (široki) */
#nf-form-2-cont nf-fields-wrap > nf-field:nth-child(5),
#nf-form-3-cont nf-fields-wrap > nf-field:nth-child(5),
#nf-form-2-cont nf-fields-wrap > nf-field:nth-child(6),
#nf-form-3-cont nf-fields-wrap > nf-field:nth-child(6),
#nf-form-2-cont nf-fields-wrap > nf-field:nth-child(9),
#nf-form-3-cont nf-fields-wrap > nf-field:nth-child(9),
#nf-form-2-cont nf-fields-wrap > nf-field:nth-child(10),
#nf-form-3-cont nf-fields-wrap > nf-field:nth-child(10),
#nf-form-2-cont nf-fields-wrap > nf-field:nth-child(11),
#nf-form-3-cont nf-fields-wrap > nf-field:nth-child(11) {
  grid-column: 1 / -1 !important;
  margin-bottom: 0 !important;
}

/* Specifično za textarea da ima veću visinu */
#nf-form-2-cont textarea.ninja-forms-field,
#nf-form-3-cont textarea.ninja-forms-field {
  height: 120px !important;
  min-height: unset !important;
  max-height: unset !important;
  resize: vertical !important;
  line-height: 1.4 !important;
}

/* Stilizuj input, select i textarea */
#nf-form-2-cont input.ninja-forms-field,
#nf-form-3-cont input.ninja-forms-field,
#nf-form-2-cont select.ninja-forms-field,
#nf-form-3-cont select.ninja-forms-field,
#nf-form-2-cont textarea.ninja-forms-field,
#nf-form-3-cont textarea.ninja-forms-field {
  width: 100% !important;
  padding: 1rem !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  background: white !important;
  color: #0a0a0a !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  margin: 0.25rem 0 !important;
  display: block !important;
}

/* Fokus efekat */
#nf-form-2-cont input.ninja-forms-field:focus,
#nf-form-3-cont input.ninja-forms-field:focus,
#nf-form-2-cont select.ninja-forms-field:focus,
#nf-form-3-cont select.ninja-forms-field:focus,
#nf-form-2-cont textarea.ninja-forms-field:focus,
#nf-form-3-cont textarea.ninja-forms-field:focus {
  outline: none !important;
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1) !important;
}

#nf-field-11-container,
#nf-field-18-container {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

#nf-form-2-cont input#nf-field-11.ninja-forms-field,
#nf-form-3-cont input#nf-field-18.ninja-forms-field {
  background-color: #000 !important;
  color: #fff !important;
  width: 100% !important;
  padding: 1rem 0 !important;
  border-radius: 8px !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  margin: 0 0 0 0 !important;
  display: block !important;
  transition: background-color 0.3s ease !important;
}

#nf-form-2-cont input#nf-field-11.ninja-forms-field:hover:not(:disabled),
#nf-form-3-cont input#nf-field-18.ninja-forms-field:hover:not(:disabled) {
  background-color: #222 !important;
}

#nf-form-2-cont nf-fields-wrap > nf-field:nth-of-type(7),
#nf-form-3-cont nf-fields-wrap > nf-field:nth-of-type(7) {
  grid-column: 1 / -1 !important;
}

@media (max-width: 600px) {
  #nf-form-2-cont,
  #nf-form-3-cont {
    padding: 1rem !important;
  }
	
  #nf-form-2-cont nf-fields-wrap,
  #nf-form-3-cont nf-fields-wrap {
    grid-template-columns: 1fr !important;
    row-gap: 0.5rem !important;
    column-gap: 0 !important;
  }

  /* Svaka forma zauzima celu širinu */
  #nf-form-2-cont nf-fields-wrap > nf-field,
  #nf-form-3-cont nf-fields-wrap > nf-field {
    grid-column: 1 / -1 !important;
    margin-bottom: 0.5rem !important;
  }
  .nf-field-container {
  	margin-bottom: 0 !important;
  }
}