@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
  /* font-family: "Outfit", sans-serif; */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #21334b;
    --primary-dark: #1a2a3a;
    --primary-light: #2d4159;
    --primary-color2: #2872f5;
    --secondary-color: #ffcf72;
    --accent-color: #f4c430;
    --green-color: #4CAF50;
    --orange-color: #FF9800;
    --blue-color: #2196F3;
    --text-primary: #21334b;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-dark: #21334b;
    --bg-overlay: rgba(33, 51, 75, 0.85);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

body {
    font-family: "Outfit", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo styles */
.logo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 75px;
    width: auto;
}

.logo-main {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: block;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* Hero Section with gradient and background image */
.hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(33, 51, 75, 0.8) 0%, rgba(26, 42, 58, 0.9) 100%), url('../img/slider.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0.3;
    z-index: -2;
}

/* Footer logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .logo-img {
        height: 32px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 207, 114, 0.2);
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
        filter: drop-shadow(2px 2px 2px rgba(249, 247, 247, 0.2));
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f7fafc;
}

.hero-cta {
    margin-bottom: 4rem;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.service-icon.green {
    background: var(--green-color);
}

.service-icon.orange {
    background: var(--orange-color);
}

.service-icon.blue {
    background: var(--blue-color);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
/* Modern About Section */
.modern-about {
    padding: 6rem 0 0 0;
    background: #f8fafc;
    overflow: hidden;
}

.modern-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    /* box-shadow: var(--shadow-xl); */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));

    transition: transform 0.3s ease;
}

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

.modern-about-content {
    padding-left: 2rem;
}

.modern-about-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.highlight-text {
    color: var(--secondary-color);
    position: relative;
}

.modern-about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modern-about-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-about {
        padding: 4rem 0;
    }
    
    .modern-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .modern-about-content {
        padding-left: 0;
    }
    
    .modern-about-title {
        font-size: 2rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .modern-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .stats-chart {
        padding: 30px 20px;
    }
    
    .chart-container {
        height: 150px;
    }
    
    .chart-bar {
        width: 25px;
    }
    
    .modern-title {
        font-size: 2.5rem;
    }
    
    .about-content-modern {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .modern-title {
        font-size: 2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .chart-bar {
        width: 20px;
    }
    
    .chart-bar::after {
        font-size: 12px;
        top: -25px;
    }
}
/* About Section */
.about {
	    margin-top: -10px;
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.about .section-title {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;

    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.cta-buttons .btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-content {
    max-width: 600px;
}

.approach-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hexagon-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.hexagon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: var(--shadow-lg);
}

.hexagon.blue {
    background: var(--blue-color);
}

.hexagon.green {
    background: var(--green-color);
}

/* Customer Experience */
.customer-experience {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.customer-experience .section-title {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-content > p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Partners */
.partners {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content {
    text-align: left;
    max-width: 100%;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.final-cta .btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.final-cta .btn-primary:hover {
    background: var(--primary-dark);
}

/* Kontakt forma u CTA sekciji */
.cta-form-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.cta-form {
    padding: 2rem;
}

.cta-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-align: center;
    font-weight: 700;
}

/* Novi stil za red sa dva polja */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
      padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--primary-color);
    font-family: inherit;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: #a0aec0;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 51, 75, 0.1);
}

.send-message-btn {
    width: 100%;
    padding: 1rem;
    background-color: #FACC15;
    color: #111827;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-message-btn:hover {
    background-color: #F59E0B;
    transform: translateY(-2px);
}

/* Responsivnost za mobilne uređaje */
@media (max-width: 768px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .form-group.half {
        margin-bottom: 0;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    padding-right: 2rem;
}

.footer-logo-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-about-section ul {
    list-style: none;
    padding: 0;
}

.footer-about-section li {
    margin-bottom: 0.75rem;
}

.footer-about-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-about-section a:hover {
    color: var(--secondary-color);
}

.footer-contact-section {
    padding-left: 1rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}
.section-header img{    
    margin: 0 auto;
    display: flex
;}
/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: block;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hexagon-container {
        flex-direction: column;
    }
    
    .partners-logos {
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-section {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-contact-section {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .contact-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 0.75rem 0;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}


/* Dugme sa borderom i praznim prostorom i unutrašnjim dugmetom */
.btn-modern {
    display: inline-block;
    min-width: 260px;
    border: 2px solid var(--secondary-color); /* Zlatno braon border */
    border-radius: 50px;
    padding: 4px; /* Prazan prostor između border-a i dugmeta */
    background: transparent;
    transition: all 0.3s ease;
}

.btn-modern .btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
        background: #ffcf72; /* Transparentna pozadina */
    color: var(--primary-color); /* Zlatno braon tekst */
    border: none;
    border-radius: 46px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-modern:hover {
    border-color: var(--secondary-color); /* Plavi border na hover */
}

.btn-modern:hover .btn-inner {
    background: transparent; /* Plava pozadina na hover */
    color: var(--secondary-color); /* Zlatno braon tekst na hover */
    transform: translateY(-2px);
}

.btn-modern-shadow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    /* Tanki border sa transparentnim prostorom */
    box-shadow: 
        0 0 0 4px transparent, /* Transparentni prostor */
        0 0 0 7px var(--primary-color); /* Spoljašnji border */
    margin: 10px;
}

.btn-modern-shadow:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    /* Border ostaje isti na hover */
    box-shadow: 
        0 0 0 4px transparent,
        0 0 0 7px var(--primary-color),
        0 8px 20px rgba(33, 51, 75, 0.2); /* Dodaje senku */
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 3px solid transparent;
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile-first CSS za Our Values sekciju - JEDNA KOLONA */
.our-values {
    padding: 40px 0;
    background-color: #ffffff;
}

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

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #2D3748;
    line-height: 1.3;
        filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
}
.section-title2 {
    font-size: 28px;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.3;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
}
.section-title p{color: #fff;}
.pwhite{color:#fff;text-align: center;}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.value-icon {
    margin-top: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffcf72;
    border-radius: 50%;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-content {
    flex: 1;
        margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.values-list .value-item:last-child {
  border: none;
}


/* Tablet breakpoint */
@media (min-width: 768px) {
    .our-values {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .values-list {
        gap: 50px;
    }
    
    .value-item {
        gap: 30px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .value-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .value-description {
        font-size: 16px;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .our-values {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .values-list {
        gap: 60px;
    }
    
    .value-item {
        gap: 40px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
    }
    
    .value-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .value-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .value-description {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .our-values .container {
        padding: 0 40px;
    }
}

/* Mobile-first CSS za Partners Logos sekciju */
.partners-logos {
    padding: 20px 0;
}

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

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 20px;
}

.logos-item {
    flex: 0 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logos-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logos-img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logos-item:hover .logos-img {
    filter: grayscale(0%);
}

/* Tablet breakpoint - 3 u redu */
@media (min-width: 768px) {
    .partners-logos {
        padding: 50px 0;
    }
    
    .logos-grid {
        gap: 30px;
    }
    
    .logos-item {
        flex: 0 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        padding: 20px;
    }
    
    .logos-img {
        max-height: 70px;
    }
}

/* Desktop breakpoint - 6 u redu */
@media (min-width: 1024px) {
    .partners-logos {
        padding: 20px 0;
    }
    
    .logos-grid {
                gap: 20px;
    }
    
    .logos-item {
        flex: 0 1 calc(16.666% - 25px);
        max-width: calc(16.666% - 25px);
        padding: 25px;
    }
    
    .logos-img {
        max-height: 80px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .partners-logos .container {
        padding: 0 40px;
    }
    
    .logos-grid {
                gap: 20px;
    }
    
    .logos-item {
        padding: 30px;
    }
}
.footer-bottom p{
        color: var(--secondary-color);
    line-height: 1.7;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonials .section-title {
    color: var(--text-light);
    text-align: center;
 
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-header{   margin-bottom: 3rem;}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    margin-bottom: 10px;
}

.star {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 2px;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .slider-controls {
        gap: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

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

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-item i {
        align-self: center;
    }
}

/* Our Approach Section - New Professional Design */
.our-approach {
    padding: 6rem 0;
    background: #ffffff;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.approach-card {

    
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.approach-card-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.approach-card-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card:hover .approach-card-icon {
    transform: scale(1.1);
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .our-approach {
        padding: 4rem 0;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-card {
        padding: 2rem 1.5rem;
    }
}

/* Solutions Grid Styles */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 207, 114, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.solution-btn:hover::before {
    left: 0;
}

.solution-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 207, 114, 0.3);
}

.solution-btn i {
    transition: transform 0.3s ease;
}

.solution-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Product Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.popup-container {
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.popup-header h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.popup-close:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.popup-content {
    padding: 2rem;
}

.popup-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.popup-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.popup-content p:last-of-type {
    margin-bottom: 2rem;
}

.popup-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.popup-cta .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
}
@media (max-width: 940px) {
	.logo-img {
		height: 55px;
		width: auto;
	}
}
/* Mobile Responsiveness for Popup */
@media (max-width: 768px) {
    .popup-container {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-content h3 {
        font-size: 1.1rem;
    }
    
    .popup-content p {
        font-size: 0.95rem;
    }
}
