/* ===== OSNOVNI STILOVI ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Light mode varijable */
    --primary: #2c5aa0;
    --secondary: #e6a408;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --bg-primary: #f5f7fa;
    --bg-secondary: white;
    --bg-tertiary: #f0f4f8;
    --text-primary: #333;
    --text-secondary: #6c757d;
    --card-bg: white;
    --footer-bg: var(--primary);
    --header-bg: white;
}

body {
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* ===== HEADER ===== */
header {
    background-color: var(--header-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
}

/* Centriran header za index.html */
.header-container-centered {
    justify-content: center;
}

/* Header sa logoom i dugmetom za cenovnik.html */
.header-container-between {
    justify-content: space-between;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.back-button {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.back-button:hover {
    background-color: #1a4580;
    transform: translateY(-2px);
}

.back-button i {
    margin-right: 8px;
}

/* ===== HERO SEKCIJE ===== */
.hero,
.pricing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 60px;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/photo0.webp');
}

.pricing-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/photo0.webp');
}

.hero-title-wrapper {
    padding: 0 5px;
}

.hero h1,
.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p,
.pricing-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.highlight-phone,
.call-now {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background-color 0.3s;
    margin-top: 20px;
    margin-bottom: 15px;
}

.highlight-phone {
    font-size: 2rem;
}

.call-now {
    font-size: 2.5rem;
}

.highlight-phone:hover,
.call-now:hover {
    transform: translateY(-5px);
    background-color: #f5b301;
}

.highlight-phone i,
.call-now i {
    margin-right: 15px;
}

.contact-instructions {
    font-size: 1.1rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.messaging-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.messaging-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.messaging-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.messaging-icon.viber {
    background-color: #7360F2;
    color: white;
}

.messaging-icon.whatsapp {
    background-color: #25D366;
    color: white;
}

/* ===== STICKY DUGMAD ===== */
.sticky-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary);
    color: var(--dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-button:hover {
    transform: scale(1.1);
    background-color: #f5b301;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.sticky-call-button .phone-text {
    display: none;
}

.sticky-call-button.expanded {
    width: auto;
    height: auto;
    padding: 15px 25px;
    border-radius: 50px;
}

.sticky-call-button.expanded .phone-text {
    display: inline-block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 164, 8, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 164, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 164, 8, 0);
    }
}

.scroll-top-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background-color: #1a4580;
    transform: translateY(-5px);
}

/* ===== SEKCIONI ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* WHY US SEKCIJA */
.why-us {
    background-color: var(--bg-secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2rem;
}

.why-us-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.why-us-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* SERVICES SEKCIJA */
.services {
    background-color: var(--bg-tertiary);
}

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

.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
    color: var(--gray);
}

.service-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.service-content li:before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* HOW IT WORKS SEKCIJA */
.how-it-works {
    background-color: var(--bg-secondary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 25px;
    border: 8px solid var(--bg-secondary);
    box-shadow: 0 0 0 3px var(--secondary), var(--shadow);
}

.step h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.step p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* PROBLEM SEKCIJA */
.problem-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.problem-title {
    font-size: 4rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

/* CENOVNIK SEKCIJA */
.pricing {
    background-color: var(--bg-primary);
}

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

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.pricing-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-features .not-included {
    opacity: 0.7;
}

.pricing-features .not-included:before {
    content: "–";
    color: var(--gray);
}

.pricing-cta {
    text-align: center;
    margin-top: 20px;
}

.pricing-button {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-button:hover {
    transform: translateY(-5px);
    background-color: #f5b301;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pricing-button i {
    margin-right: 10px;
}

/* KONTAKT SEKCIJA */
.contact-section {
    background-color: var(--bg-tertiary);
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-secondary);
}

.contact-phone-large {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.contact-phone-large a {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.contact-phone-large a:hover {
    color: var(--secondary);
}

/* FOOTER */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cenovnik a {
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
}

.cenovnik a:hover {
    color: #f5b301;
    border-bottom: 3px solid #f5b301;
}

/* Napomena o cenama */
.price-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #e8f0fe;
    border-radius: 10px;
}

.price-note h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.price-note p {
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.price-note strong {
    color: var(--primary);
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #121212;
        --bg-secondary: #1e1e1e;
        --bg-tertiary: #2d2d2d;
        --text-primary: #e0e0e0;
        --text-secondary: #a0a0a0;
        --dark: #1a1a1a;
        --gray: #888888;
        --light: #2d2d2d;
        --card-bg: #1e1e1e;
        --footer-bg: #1a3a6e;
        --header-bg: #1e1e1e;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    /* Header */
    header {
        border-bottom: 1px solid #333;
    }

    .logo-text {
        color: #e0e0e0;
    }

    .back-button {
        background-color: #2c5aa0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .back-button:hover {
        background-color: #3a6bc8;
    }

    /* Hero sekcije */
    .hero,
    .pricing-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
    }

    /* Why Us */
    .why-us-item {
        background-color: var(--card-bg);
        color: var(--text-primary);
    }

    .why-us-item h3 {
        color: #8ab4f8;
    }

    .why-us-item p {
        color: var(--text-secondary);
    }

    .why-us-icon {
        background-color: #2d2d2d;
        color: #8ab4f8;
    }

    /* Services */
    .service-card {
        background-color: var(--card-bg);
    }

    .service-content h3 {
        color: #8ab4f8;
    }

    .service-content li {
        color: var(--text-secondary);
    }

    /* How it works */
    .step h3 {
        color: #8ab4f8;
    }

    .step p {
        color: var(--text-secondary);
    }

    /* Cenovnik kartice */
    .pricing-card {
        background-color: var(--card-bg);
        border: 1px solid #333;
    }

    .pricing-header {
        background-color: #1a3a6e;
    }

    .pricing-body {
        color: var(--text-primary);
    }

    .pricing-features li {
        color: #cccccc;
    }

    .pricing-features .not-included {
        color: #888888;
    }

    .pricing-button {
        background-color: #e6a408;
        color: #121212;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .pricing-button:hover {
        background-color: #f5b301;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    /* Kontakt sekcija */
    .contact-info {
        background-color: var(--card-bg);
        color: var(--text-primary);
        border: 1px solid #333;
    }

    .contact-info h3 {
        color: #8ab4f8;
    }

    .contact-icon {
        background-color: #2d2d2d;
        color: #8ab4f8;
    }

    .contact-text h4 {
        color: #e0e0e0;
    }

    .contact-text p {
        color: #cccccc;
    }

    .contact-phone-large {
        background-color: #1a3a6e;
        border: 1px solid #2c5aa0;
    }

    /* Footer */
    footer {
        border-top: 1px solid #333;
    }

    .footer-section p,
    .footer-section li {
        color: rgba(255, 255, 255, 0.85);
    }

    .social-icons a {
        background-color: rgba(255, 255, 255, 0.15);
    }

    /* Sticky dugmad */
    .sticky-call-button {
        background-color: #e6a408;
        color: #121212;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .scroll-top-button {
        background-color: #2c5aa0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Poboljšan kontrast */
    .section-title {
        color: #8ab4f8;
    }

    /* Poboljšana vidljivost logoa */
    .logo-icon img {
        filter: brightness(1.3);
    }

    /* Napomena o cenama */
    .price-note {
        background-color: #2d2d2d;
        border: 1px solid #444;
    }

    .price-note h3 {
        color: #8ab4f8;
    }

    .price-note p {
        color: #cccccc;
    }

    .price-note strong {
        color: #e0e0e0;
    }

    /* Copyright text */
    .copyright {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Poboljšan kontrast za linkove */
    a {
        color: #8ab4f8;
    }

    a:hover {
        color: #a8c7fa;
    }
}

/* ===== RESPONSIVNOST ===== */
@media (max-width: 992px) {

    .hero h1,
    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .sticky-call-button {
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-button {
        bottom: 90px;
        right: 20px;
    }

    .process-steps {
        flex-direction: column;
        gap: 50px;
    }

    .problem-title {
        font-size: 3.2rem;
    }

    .call-now {
        font-size: 2rem;
        padding: 18px 40px;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .hero,
    .pricing-hero {
        padding: 80px 20px;
    }

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

    .highlight-phone {
        font-size: 1.5rem;
        padding: 12px 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sticky-call-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 80px;
        right: 15px;
    }

    .contact-instructions {
        font-size: 1rem;
        padding: 0 10px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .step h3 {
        font-size: 1.6rem;
        min-height: 50px;
    }

    .problem-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    .call-now {
        font-size: 1.8rem;
        padding: 16px 35px;
    }

    .messaging-icons {
        gap: 15px;
    }

    .messaging-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .pricing-hero p {
        font-size: 1rem;
    }

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

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-item {
        padding: 20px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .step h3 {
        font-size: 1.4rem;
        min-height: 45px;
    }

    .problem-title {
        font-size: 2rem;
    }

    .call-now {
        font-size: 1.5rem;
        padding: 14px 30px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .pricing-hero h1 {
        font-size: 1.8rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .highlight-phone {
        font-size: 1.3rem;
        padding: 10px 20px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .problem-title {
        font-size: 1.8rem;
    }

    .call-now {
        font-size: 1.3rem;
        padding: 12px 25px;
    }

    .messaging-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 420px) {
    .call-now {
        font-size: 1.1rem;
        padding: 10px 15px;
    }

    .problem-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
}

/* VEOMA MALI EKRANI (< 400px) */
@media (max-width: 400px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .hero-title-wrapper {
        margin-bottom: 15px;
    }

    .hero h1,
    .pricing-hero h1 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .hero p,
    .pricing-hero p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .highlight-phone {
        font-size: 1.1rem;
        padding: 10px 20px;
        margin: 10px auto;
    }

    .contact-instructions p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .messaging-icons {
        gap: 10px;
    }

    .messaging-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .why-us-item {
        padding: 15px;
        margin: 0 10px;
    }

    .why-us-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-us-item h3 {
        font-size: 1.2rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-us-item p {
        font-size: 0.95rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content ul {
        padding-left: 5px;
    }

    .service-content li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        border: 5px solid var(--bg-secondary);
    }

    .step h3 {
        font-size: 1.2rem;
        min-height: 40px;
    }

    .step p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .problem-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .call-now {
        font-size: 1rem;
        padding: 12px 25px;
        white-space: nowrap;
    }

    .call-now i {
        margin-right: 8px;
        font-size: 1rem;
    }

    .footer-section {
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .social-icons {
        justify-content: center;
    }

    .sticky-call-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top-button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        bottom: 70px;
        right: 15px;
    }

    .cenovnik {
        text-align: center;
    }

    .cenovnik a {
        display: inline-block;
        margin-top: 5px;
        padding: 5px 10px;
        background: var(--secondary);
        color: var(--dark);
        border-radius: 5px;
        text-decoration: none;
        border: none;
    }

    .back-button {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        margin: 0 10px;
    }

    .pricing-header {
        padding: 20px 15px;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-body {
        padding: 20px 15px;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .pricing-button {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .pricing-note {
        font-size: 0.8rem;
    }

    .contact-container {
        margin: 0 5px;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contact-phone-large {
        padding: 15px;
    }

    .contact-phone-large h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .contact-phone-large a {
        font-size: 1.4rem;
    }

    .price-note {
        margin: 20px 10px;
        padding: 15px;
    }

    .price-note h3 {
        font-size: 1.2rem;
    }

    .price-note p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 320px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 25px;
        height: 25px;
    }

    .hero h1,
    .pricing-hero h1 {
        font-size: 1.4rem;
    }

    .highlight-phone {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .problem-title {
        font-size: 1.4rem;
    }

    .call-now {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .why-us-grid {
        gap: 15px;
    }

    .pricing-button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* DARK MODE SPECIFIČNA RESPONSIVNOST */
@media (prefers-color-scheme: dark) and (max-width: 400px) {
    .pricing-card {
        border: 1px solid #444;
    }

    .contact-info {
        border: 1px solid #444;
    }

    .price-note {
        border: 1px solid #444;
    }

    .sticky-call-button {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }
}

/* POMOĆNE KLASE ZA RESPONSIVE */
.mobile-text-small {
    font-size: 0.9rem;
}

.mobile-text-center {
    text-align: center;
}

.mobile-padding {
    padding: 0 10px;
}