/* Modern Card Layout for Services */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    max-width: 350px;
    margin: 0 auto var(--spacing-md) auto;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f8f8f8;
    display: block;
}

.card-content {
    padding: 24px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-category {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
/* ==========================================
   CSS Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #8B4513;
    --primary-dark: #5D2F0E;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    /* PRAVILO 2: Minimalni font size 16px */
    font-size: 16px;
    /* PRAVILO 8: Jak kontrast za čitljivost */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

button, a, .btn {
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(139, 69, 19, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    background-image: url('/images/posao_1/WhatsApp Slika 2025-10-28 u 21.53.41_4a8a1299.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: var(--spacing-xl) 0;
}

/* Mobilna optimizacija sekcija */
@media (max-width: 768px) {
    section {
        padding: 48px 0; /* PRAVILO 4: Dovoljno paddinga */
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ==========================================
   Services Section
   ========================================== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - var(--spacing-md));
    min-width: 300px;
}

@media (max-width: 992px) {
    .service-card {
        flex: 0 1 calc(50% - var(--spacing-md));
        min-width: 280px;
    }
}

.service-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
    border-radius: var(--radius-md);
}
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    touch-action: manipulation;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    user-select: none;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ==========================================
   Contact Form
   ========================================== */
.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot field - hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: inline-block;
    transition: transform var(--transition-fast);
}

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

.social-icon {
    font-size: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ==========================================
   Fixed Social Media Icons
   ========================================== */
.fixed-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-floating {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.social-floating img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.social-floating:hover {
    transform: scale(1.15) translateX(-5px);
}

.social-floating:hover img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .fixed-social {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .social-floating {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* ==========================================
   Responsive Design - OPTIMIZIRANO ZA MOBITEL
   ========================================== */

/* ===== TABLET (768px i manje) ===== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* PRAVILO 1: Sve jednokolonski */
    .container {
        padding: 0 20px; /* PRAVILO 4: Pading 20px sa strana */
    }

    /* PRAVILO 6: Hamburger meni */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-medium);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    /* PRAVILO 3: Navigacija - velike touch zone */
    .nav-link {
        padding: 16px 20px; /* Minimalno 44px visine */
        font-size: 18px; /* PRAVILO 2: Veći tekst */
        display: block;
        width: 100%;
        text-align: center;
    }

    /* PRAVILO 2: Veći tekst na mobitelu */
    .hero-title {
        font-size: 28px !important; /* H1: 22-28px */
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px !important; /* Podnaslov: 18-22px */
        line-height: 1.5;
    }

    /* PRAVILO 3 & 7: Jedan veliki, vidljiv button */
    .btn {
        width: 100%;
        font-size: 18px !important;
        padding: 16px 24px !important;
        min-height: 56px !important; /* Veće od 44px minimuma */
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        border-radius: 8px;
    }

    /* PRAVILO 1 & 4: Jednokolonski sa razmakom */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* PRAVILO 5: Slike 100% širine */
    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    /* PRAVILO 1: Kontakt forma jednokolonska */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* PRAVILO 3: Veliki input fielovi */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* PRAVILO 2: Minimalno 16px */
        padding: 14px !important;
        min-height: 48px;
    }

    .form-group label {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    /* PRAVILO 4: Razmak između form grupa */
    .form-group {
        margin-bottom: 24px;
    }

    /* PRAVILO 1: Usluge jednokolonski */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 24px; /* PRAVILO 4: Razmak */
        max-width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
        padding: 24px;
    }

    /* PRAVILO 2: Veći tekstovi u karticama */
    .service-card h3 {
        font-size: 22px; /* H3: 18-22px */
    }

    .service-card p {
        font-size: 16px; /* Normalni tekst: 16px */
        line-height: 1.6;
    }

    .service-icon {
        font-size: 48px;
    }

    /* PRAVILO 1 & 5: Galerija jednokolonski, slike 100% */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }

    /* Hero sekcija optimizacija */
    .hero {
        background-attachment: scroll;
        min-height: 70vh;
        padding: var(--spacing-lg) 20px;
    }

    /* PRAVILO 10: CTA uvijek vidljiv */
    .hero-content {
        padding: 24px 16px;
    }

    /* PRAVILO 2: Naslov sekcija */
    .section-title {
        font-size: 26px; /* H2: 22-28px */
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    /* Kontakt sekcija optimizacija */
    .contact-item {
        padding: 20px;
        margin-bottom: 16px;
        text-align: center;
    }

    .contact-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 16px;
    }

    .contact-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    /* Fixed social icons - pristupačne ali ne ometaju */
    .fixed-social {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .social-floating {
        width: 52px;
        height: 52px;
    }

    /* Footer optimizacija */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 20px;
    }

    .footer-section p {
        font-size: 16px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 24px;
    }

    .scroll-indicator span {
        font-size: 14px;
    }
}

/* ===== MALI MOBITELI (480px i manje) ===== */
@media (max-width: 480px) {
    /* PRAVILO 4: Još više paddinga za male ekrane */
    .container {
        padding: 0 16px;
    }

    /* PRAVILO 2: Prilagođeni tekstovi za male ekrane */
    .hero-title {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* PRAVILO 3: Dugmad i dalje velika */
    .btn {
        font-size: 16px !important;
        padding: 14px 20px !important;
        min-height: 52px !important;
    }

    /* Service kartice */
    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
    }

    /* Kontakt items */
    .contact-item {
        padding: 16px;
    }

    /* Social icons malo manje na vrlo malim ekranima */
    .social-floating {
        width: 48px;
        height: 48px;
    }

    .fixed-social {
        right: 8px;
        bottom: 8px;
        gap: 8px;
    }

    /* Form buttoni */
    .contact-form .btn {
        width: 100%;
        font-size: 17px !important;
        padding: 16px !important;
        min-height: 54px !important;
    }

    /* Navbar na malim ekranima */
    .navbar {
        padding: 12px 0;
    }

    .nav-brand h1 {
        font-size: 20px;
    }
}

/* End of styles */
