/* YooTheme Style - Modern Clean Design */
<style>
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Stack+Sans+Notch:wght@200..700&family=Young+Serif&display=swap');
</style>
  .lato-thin {
      font-family: "Lato", sans-serif;
      font-weight: 100;
      font-style: normal;
  }

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.roboto-<uniquifier> {
             font-family: "Roboto", sans-serif;
             font-optical-sizing: auto;
             font-weight: <weight>;
             font-style: normal;
             font-variation-settings:
                     "wdth" 100;
         }

.stack-sans-notch-600 {
                       font-family: "Stack Sans Notch", sans-serif;
                       font-optical-sizing: auto;
                       font-weight: 600;
                       font-style: normal;
                   }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.hero-content {
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #212529;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card {
    padding: 40px 30px;
    background: white;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0 15px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.stat-sublabel {
    font-size: 15px;
    color: #6c757d;
}

/* Section Styles */
.section-light {
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    color: #212529;
    margin-bottom: 25px;
    font-size: 42px;
    font-weight: 800;
}

.section-description {
    font-size: 20px;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-red {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.feature-card-dark {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: white;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Content Blocks */
.content-text {
    font-size: 19px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.content-text strong {
    color: #dc3545;
    font-weight: 700;
}

.content-image {
    width: 100%;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: white;
    padding: 100px 0;
}



/* Reference Grid */
.reference-card {
    background: white;
    padding: 25px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reference-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;

    margin-bottom: 15px;
}

.reference-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.reference-card strong {
    color: #dc3545;
}

/* About Section */
.about-text {
    font-size: 19px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

.about-text strong {
    color: #dc3545;
    font-weight: 700;
}

/* Footer */

.footer-section {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: white;
    padding: 100px 0 50px;
}

.footer-title {
    color: white;
    margin-bottom: 40px;
    font-size: 42px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 50px;
}

/* Buttons - YooTheme Style */
.uk-button-danger {
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    padding: 18px 45px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;

    font-size: 16px !important;
}

.uk-button-danger:hover {
    background: #c82333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4) !important;
}

.uk-button-large {
    padding: 20px 50px !important;
    font-size: 18px !important;
}

/* Modal Styles */
.modal-dialog {

    padding: 0;
    overflow: hidden;
    max-width: 600px;
}

.modal-header {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.modal-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.modal-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.modal-body {
    padding: 50px 40px;
}

.contact-form .uk-form-label {
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form .uk-input,
.contact-form .uk-textarea {
    border: 2px solid #e9ecef;

    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
    border-color: #dc3545;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.modal-submit-btn {
    width: 100%;
    margin-top: 20px;
}

/* Success Modal */
.modal-dialog-success {

    text-align: center;
    padding: 80px 50px;
    max-width: 500px;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: white;
}

.success-title {
    font-size: 36px;
    color: #212529;
    margin-bottom: 20px;
    font-weight: 800;
}

.success-message {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .feature-card {
        padding: 40px 25px;
    }
    
    .modal-header {
        padding: 40px 25px;
    }
    
    .modal-body {
        padding: 40px 25px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
.uk-section-muted {
    --uk-inverse: dark;
    background: #f5f1e5;
}
.bg-red{
    background: #ab0000;

}
.bg-red h3 {
    color:#fff;
}
#page\#15,#page\#12,#page\#13,#page\#14,#page\#16,#page\#17,#page\#18,#page\#21,#page\#23,#page\#25,#page\#27,#page\#29  {
    padding-top: 75px;
}
/*
#page\#12 .el-image {
    translate: 0 0;
}
#page\#13 .el-image {
    translate: 100% 0;
}

#page\#15 .el-image {
    translate: 200% 0;
}

#page\#17 .el-image {
    translate: 300% 0;
}
#page\#21 .el-image {
    translate: 400% 0;
}
#page\#23 .el-image {
    translate: 500% 0;
}
#page\#25 .el-image {
    translate: 600% 0;
}
#page\#27 .el-image {
    translate: 700% 0;
}
#page\#29 .el-image {
    translate: 800% 0;
}
*/
/* Ukloni stara pravila za .el-image */
/* #page\#12 .el-image { translate: 0 0; } - OBRIŠI */

/* Umesto toga, pomeraš ceo div */
#page\#12 {
    translate: 0 0;
}
#page\#13, #page\#14 {
    translate: 100% 0;
}
#page\#15, #page\#16 {
    translate: 200% 0;
}
#page\#17, #page\#18 {
    translate: 300% 0;
}
#page\#21, #page\#22 {
    translate: 400% 0;
}
#page\#23, #page\#24 {
    translate: 500% 0;
}
#page\#25, #page\#26 {
    translate: 500% 0;
}
#page\#27, #page\#28 {
    translate: 500% 0;
}
#page\#29, #page\#30 {
    translate: 500% 0;
}

.color-red{
    color:#c30404;
}
.color-black{
    color: #000;
}
.bg-red{
    background: #c30404;
}
a.uk-card-hover.uk-flex-1.uk-card.uk-card-default.uk-card-body.uk-margin-remove-first-child.uk-link-toggle {
    border-radius: 20px;
}
h3.el-title.uk-h5.uk-margin-top.uk-margin-remove-bottom {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
}
.uk-divider-small::after {
    content: "";
    display: inline-block;
    width: 50px;
    max-width: 100%;
    border-top: 2px solid #ff0000;
    vertical-align: top;
}
.overlay-text {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}
.cta-title{
    color: #fff;
    font-family: "Stack Sans Notch", sans-serif;
    font-weight: 600;
    padding-bottom:30px;
}
.reference {
    margin-top: -60px;
    margin-bottom: 70px;
}
.uk-card-muted {
    background: rgb(248, 248, 248);
}
.reference h2{

    padding-bottom: 50px;
    font-family: "Stack Sans Notch", sans-serif;
    font-weight: 600;

}
.kontakt{
    margin-top: -152px;
    background: #c30404;
}
.kontakt h2 {
padding: 20px;
    font-family: "Stack Sans Notch", sans-serif;
    font-weight: 600;
}
h2.split-color {

    /* Gradijent koji je crn gore do 50%, a beo od 50% na dole */
    background: linear-gradient(to bottom, #fff 50%, #ffffff 50%);
    /* Ovo "seče" gradijent tako da se vidi samo kroz slova */
    -webkit-background-clip: text;
    background-clip: text;
    /* Tekst mora biti providan da bi se video gradijent */
    -webkit-text-fill-color: transparent;
    color: transparent;
}