/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: hsl(217, 91%, 60%);
    --primary-light: hsl(217, 91%, 95%);
    --primary-dark: hsl(217, 91%, 40%);
    --secondary: hsl(215, 25%, 27%);
    --secondary-light: hsl(215, 20%, 35%);
    
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(215, 25%, 27%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --border: hsl(214, 32%, 91%);
    
    /* Spacing */
    --container: 1280px;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 20px -4px hsl(215 25% 27% / 0.1);
    --shadow-lg: 0 8px 30px -4px hsl(217 91% 60% / 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Utilities ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header .naslovh3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta {
    background: var(--primary);
    color: white !important;
}

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

.btn-hero {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-hero:hover {
    background: hsl(217, 91%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsl(217 91% 60% / 0.4);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
    width: 100%;
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }


/* ===== Dropdown Core Styles ===== */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

/* Desktop Styles (Hover) */
@media (min-width: 1024px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: var(--card);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 0.75rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        z-index: 100;
        border: 1px solid var(--border);
    }

    .dropdown-menu a {
        display: block;
        padding: 0.5rem 1.25rem;
        color: var(--muted-foreground) !important;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        background: var(--primary-light);
        color: var(--primary) !important;
    }
}

/* Mobile Styles (Click Arrow) */
@media (max-width: 1023px) {
    .nav-mobile .dropdown {
        width: 100%;
    }

    .nav-mobile .dropdown-trigger {
        justify-content: space-between;
        padding: 0.75rem 0;
    }

    .nav-mobile .dropdown-trigger a {
        padding: 0 !important;
        flex-grow: 1;
    }

    .nav-mobile .dropdown-arrow {
        padding: 10px; /* Larger hit area for fingers */
    }

    .nav-mobile .dropdown-menu {
        display: none; /* Hidden by default on mobile */
        padding-left: 1.5rem;
        flex-direction: column;
    }

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

    .nav-mobile .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card);
    transition: var(--transition);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5 rem;
}

.logo img {
    height: 2.5rem;
    width: auto;
}
.header .logo img {
    height: 4rem;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--muted-foreground);
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-cta {
    display: none;

}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
}

.hamburger {
    position: relative;
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    top: 3.5rem;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .nav-mobile-overlay {
        top: 5rem;
    }
}

@media (min-width: 1024px) {
    .nav-mobile-overlay {
        display: none !important;
    }
}

.nav-mobile {
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-top: 1px solid var(--border);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-0.5rem);
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
}

.nav-mobile.active {
    max-height: 700px;
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: var(--transition);
}

.nav-mobile a:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1rem;
}
@media (max-width: 1023px) {

    .nav-mobile svg {
    margin-left: 10px;
}
  


.nav-mobile-overlay {
  
    top: 6rem;
 

}
.nav-mobile.active {
padding: 1rem;

}}


@media (min-width: 768px) {
    .header-container {
        height: 4rem;
    }
    
    .logo img {
        height: 2.5rem;
    }
    
    .header-cta {
        display: inline-flex;
    }
    
    .nav-mobile-overlay {
        top: 4rem;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-mobile {
        display: none !important;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    background: var(--secondary);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.region-badge svg {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(1.5rem, 8vw, 3.75rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
}

.benefit-icon svg {
    color: var(--primary);
}

.benefit-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    display: block;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefit-item span {
        font-size: 1rem;
    }
}

/* ===== Service Area Section ===== */
.service-area {
    padding: 3rem 0 4rem;
}

.service-area-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.service-area-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-area-header svg {
    color: var(--primary);
}

.service-area-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.regions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.region-tag {
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
}

.service-area-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .service-area-card {
        padding: 3rem;
    }
    
    .service-area-header h2 {
        font-size: 1.875rem;
    }
    
    .regions {
        gap: 2rem;
    }
    
    .region-tag {
        font-size: 1.25rem;
    }
}

/* ===== Services Section ===== */
.services {
    padding: 4rem 0;
    scroll-margin-top: 5rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95), rgba(30, 41, 59, 0.4), transparent);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
}

.service-card-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.service-card-content p {
    font-size: 0.875rem;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-details {
    display: grid;
    gap: 3rem;
}

.services-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    margin-top: 0.125rem;
}

.check-icon svg {
    color: var(--primary);
}

.service-item span {
    font-weight: 500;
}

.emergency-card {
    position: relative;
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
}

.emergency-badge {
    position: absolute;
    top: -1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 1.875rem;
    font-weight: 700;
    transform: rotate(12deg);
    box-shadow: 0 0 40px hsl(217 91% 60% / 0.4);
}

.emergency-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-card > p {
    opacity: 0.8;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.emergency-feature svg {
    color: var(--primary);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-details {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .services-list h3 {
        font-size: 1.875rem;
    }
    
    .emergency-card {
        padding: 3rem;
    }
    
    .emergency-card h3 {
        font-size: 1.875rem;
    }
}

@media (min-width: 1280px) {
    .service-cards {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 4rem 0;
    background: var(--muted);
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.reason-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.reason-card:hover {
    box-shadow: var(--shadow-lg);
}

.reason-card:hover .reason-icon {
    background: var(--primary);
}

.reason-card:hover .reason-icon svg {
    color: white;
}

.reason-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.reason-icon svg {
    color: var(--primary);
    transition: var(--transition);
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .reason-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 4rem 0;
    background: var(--muted);
    scroll-margin-top: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.pricing-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
}

.pricing-icon svg {
    color: var(--primary);
}

.pricing-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-content p {
    color: var(--muted-foreground);
}

.pricing-note {
    text-align: center;
    color: var(--muted-foreground);
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Process Section ===== */
.process {
    padding: 4rem 0;
    scroll-margin-top: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}

.process-line {
    display: none;
}

.process-step {
    text-align: center;
}

.step-circle {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
}

.step-icon svg {
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--muted-foreground);
    max-width: 20rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .process-line {
        display: block;
        position: absolute;
        top: 3rem;
        left: 25%;
        right: 25%;
        height: 2px;
        background: var(--border);
    }
}

@media (max-width: 500px) {
    .contact-value {

    font-size: 14px !important;

}
   
}

/* ===== FAQ Section ===== */
.faq {
    padding: 4rem 0;
    background: var(--muted);
    scroll-margin-top: 5rem;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--foreground);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1rem;
    color: var(--muted-foreground);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== Contact Section ===== */
.contact {
    padding: 4rem 0;
    scroll-margin-top: 5rem;
}

.contact-grid{
  display: flex;
  justify-content: center; /* horizontalno centar */
}

.contact-info{
  width: 100%;
  max-width: 520px; /* po želji */
}

.contact-info {
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-item:not(.no-hover):hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item:not(.no-hover):hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
}

.contact-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-form {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(217 91% 60% / 0.1);
}

.form-group input {
    height: 3rem;
}

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

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .contact-info {
        padding: 2.5rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info,
    .contact-form {
        height: 100%;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 3rem;
    margin-bottom: 1rem;
}

.footer-about p {
    opacity: 0.7;
    max-width: 28rem;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-links a {
    display: block;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    opacity: 0.6;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-credit {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.5;
    margin-top: 1.5rem;
}

.footer-credit a {
    color: var(--primary);
}

.footer-credit a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ===== Floating Call Button ===== */
.floating-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px hsl(217 91% 60% / 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: pulse-glow 2s ease-in-out infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px hsl(217 91% 60% / 0.5);
}

.floating-call.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px hsl(217 91% 60% / 0.4);
    }
    50% {
        box-shadow: 0 4px 40px hsl(217 91% 60% / 0.6);
    }
}

@media (min-width: 768px) {
    .floating-call {
        display: none;
    }
}




@media (max-width: 1023px) {
    .hero-content {
    text-align: left;
    align-items: flex-start;
    padding: 2rem 1.5rem 2rem 1.5rem; 
    width: 100%;
    box-sizing: border-box; 
    }

    .hero-title {
        text-align: left;
        font-size: 2.25rem;
        white-space: normal; 
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        text-align: left;
        margin-left: 0; 
    }

    .benefits-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%; 
    }

    .benefit-item {
        justify-content: flex-start; 
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: flex-start; 
    }

    .btn-hero, .btn-hero-outline {
        width: 100%; 
        text-align: center;
    }
}

.price-table-wrap{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.price-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
}

.price-table th,
.price-table td{
  padding:14px 12px;
  border-bottom:1px solid rgba(0,0,0,.08);
  text-align:left;
  vertical-align:top;
}

.price-table thead th{
  font-weight:700;
}

.price-table td:last-child,
.price-table th:last-child{
  text-align:right;
  white-space:nowrap;
}

.price-note{
  margin-top:14px;
  font-size:0.95rem;
  opacity:.85;
  line-height:1.5;
}

/* === Price table hover animation === */
.price-table tbody tr{
  transition: 
    background-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.price-table tbody tr:hover{
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.price-table tbody td{
  transition: color .25s ease;
}

.price-table tbody tr:hover td{
  color: #0f172a;
}

/* Cena – mala animacija */
.price-table tbody td:last-child{
  transition: 
    transform .25s ease,
    font-weight .25s ease;
}

.price-table tbody tr:hover td:last-child{
  transform: translateX(-4px);
  font-weight: 700;
}

@media (max-width: 412px){
  .price-table th,
  .price-table td{
    padding: 10px 8px;
    font-size: 14px;
  }

  .price-table td:last-child,
  .price-table th:last-child{
    white-space: nowrap;
    font-size: 13px;
  }
}

@media (max-width: 380px){

  /* manje “mesa” */
  .price-table th,
  .price-table td{
    padding: 9px 6px;
    font-size: 13px;
  }

  /* skraćenje headera na mobilnom */
  .price-table thead th:last-child{
    font-size: 12px;
  }
  .price-table thead th:last-child::after{
    content: "Preis";
  }
  .price-table thead th:last-child{
    color: transparent; /* sakrije originalni tekst */
    position: relative;
  }
  .price-table thead th:last-child::after{
    color: inherit;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
  }

  /* cena da ostane u jednom redu i stane */
  .price-table td:last-child{
    white-space: nowrap;
    font-size: 13px;
  }
}




/* Page Header */
.page-header {
  background-color: #344256
;
  padding: 110px 0 60px 0;
  color: #ffffff;
  
}

.page-header h1 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 600;
}

.breadcrumbs {
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 6px;
}

.impressum {
    margin-top: 50px ;
    margin-bottom: 50px ;
}

.header-pages {
    text-align: center;
}

/* Prefiks srv- za izbegavanje konflikta */

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

.srv-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.srv-reverse {
    flex-direction: row-reverse;
}

.srv-col-text, .srv-col-img {
    flex: 1;
    min-width: 300px;
}

.srv-bg-light {
    background-color: #f8f9fa;
}

.srv-subtitle {
    color: #3c83f6;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.srv-col-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.srv-col-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.srv-list {
    list-style: none;
    padding: 0;
}

.srv-list li {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.srv-list li i {
    color: #00457c;
}

.srv-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Koraci / Steps */
.srv-center-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.srv-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.srv-step-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

.srv-step-card:hover {
    border-color: #3c83f6;
}

.srv-step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 69, 124, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.srv-step-card h3 {
    margin-bottom: 15px;
}

/* Dugme */
.srv-cta-btn {
    display: inline-block;
    color: white;
    background-color: #3c83f6;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .srv-row {
        flex-direction: column;
        text-align: center;
    }
    .srv-list li {
        justify-content: center;
    }
}

.preisliste-page{
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    /* Forsiramo kontejner da postane kolona, bez obzira na stari kod */
    .kmr-timeline {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Forsiramo svaki korak na 100% širine da mora pasti ispod */
    .kmr-step {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin: 0 0 30px 0 !important; /* Samo donja margina za razmak */
    }
}

@media only screen and (max-width: 768px) {
    
    /* 1. Slažemo sliku i tekst jedno ispod drugog */
    .kmr-split-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    /* 2. Dajemo punu širinu i slici i tekstu */
    .kmr-split-image, 
    .kmr-split-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important; /* Razmak između slike i teksta */
    }

    /* 3. Popravljamo sliku da se ne seče */
    .kmr-img-frame {
        width: 100% !important;
        height: auto !important;
        overflow: visible !important; /* Bitno da se ne odseče "24h" bedž */
    }

    .kmr-big-img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px; /* Opciono: lepše izgleda na mobu */
    }

    /* 4. Sređujemo malu mrežicu (4 stavke) da budu 2 po redu, a ne 4 ili 1 */
    .kmr-mini-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* Dve kolone */
        gap: 15px !important;
        margin-top: 20px !important;
    }

    /* 5. Centriramo dugme i tekst za poziv */
    .kmr-cta-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
        .kmr-step:not(:last-child)::after {
      
        background: transparent !important;
   
      
    }
}

@media only screen and (max-width: 383px) {

    .kmr-mini-item h5{
        font-size: 14px !important;
    }
     .kmr-step:not(:last-child)::after {
      
        background: transparent !important;
   
      
    }


}

@media only screen and (max-width: 805px) {

    .footer{
        padding-bottom: 70px !important;
    }
}


.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #3c83f6
; /* Tvoja plava boja (promeni ako treba) */
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px; /* Zaobljene ivice */
    display: flex;
    align-items: center;
    gap: 10px; /* Razmak između slušalice i teksta */
    font-weight: 600;
    font-family: sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Senka da se ističe */
    transition: transform 0.3s ease;
}

.floating-call-btn:hover {
    transform: scale(1.05); /* Malo se uveća kad pređeš mišem */
    background-color: #3c83f6
; /* Tamnija plava na hover */
}

/* Na mobilnom da bude centrirano pri dnu */
@media (max-width: 600px) {
    .floating-call-btn {
        left: auto; /* BITNO: Ovo poništava širenje na levu stranu */
        right: 20px; /* Fiksirano 20px od desne ivice */
        bottom: 20px; /* Malo odmaknuto od dna */
        width: auto; /* Dugme će biti široko samo koliko je tekst dugačak */
        justify-content: center;
        font-size: 14px; /* Malo manji font da ne zauzima previše mesta */
        padding: 10px 20px; /* Prilagođen razmak unutar dugmeta */

    }
}