/* 
  
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

section {
    padding: 80px 0;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 10px;
}

.nav-item {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    display: block;
}

.nav-item-1 {
    background-color: #8A4FFF;
    color: white;
}

.nav-item-2 {
    background-color: #8A4FFF;
    color: white;
}

.nav-item-3 {
    background-color: #8A4FFF;
    color: white;
}

.nav-item-4 {
    background-color: #8A4FFF;
    color: white;
}

.nav-item-5 {
    background-color: #8A4FFF;
    color: white;
}

.nav-item-6 {
    background-color: #8A4FFF;
    color: white;
}
.nav-item-7 {
    background-color: #8A4FFF;
    color: white;
}

.nav-item-8 {
    background-color: #007bff;
    color: white;
}

.nav-item:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.call-button {
    margin-left: 20px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #7a3aff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button-large {
    background-color: #8A4FFF;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #7a3aff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-note {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
    color: #666;
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-left: auto;
    flex-direction: column;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0; /* Changed from auto to 0 to align left within the hamburger div */
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: white;
    color: black;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.hero-title {
    margin-bottom: 20px;
}

.hero h1 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 2.8rem;
    line-height: 1.2;
}

.highlight {
    display: inline-block;
    background-color: #8A4FFF;
    padding: 5px 15px;
    border-radius: 30px;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    background-color: #f5f5f5;
}

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

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: #8A4FFF;
    margin-bottom: 20px;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.about-cta {
    text-align: center;
}

/* Services Section */
.services {
    background-color: #f5f5f5;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #8A4FFF;
    margin-bottom: 20px;
}

/* Tracking Section */
.tracking {
    background-color: #8A4FFF;
    color: white;
    text-align: center;
}

.tracking h2 {
    color: white;
}

.tracking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

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

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    background-color: white;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background-color: #8A4FFF;
    color: white;
}

.pricing-table tr:hover {
    background-color: #f5f5f5;
}

.payment-methods {
    text-align: center;
    margin-bottom: 40px;
}

.payment-icons {
    font-size: 2rem;
    margin-top: 20px;
}

.payment-icons i {
    margin: 0 10px;
    color: #8A4FFF;
}

.pricing-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.testimonial-content {
    padding: 30px;
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.faq-toggle {
    color: #8A4FFF;
    transition: all 0.3s ease;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
    border-top: 1px solid #e0e0e0;
}

/* Contact Section */
.contact {
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: #8A4FFF;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h3 {
    margin-bottom: 10px;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #8A4FFF;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #8A4FFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        margin-top: 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: 2;
        margin-bottom: 30px;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .call-button {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tracking-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .benefit-card, .service-card {
        padding: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}



/* Gallery Section */
.gallery {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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



/* Hero Rating Styles */
.hero-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center on mobile by default */
}

.hero-rating i {
    color: #f39c12; /* Orange/Gold color for stars */
    margin-right: 3px;
    font-size: 1.1em;
}

.hero-rating span {
    margin-left: 8px;
    font-size: 0.9em;
    font-weight: 500;
    color: #8A4FFF; /* Changed to white as requested */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for desktop */
@media (min-width: 768px) {
    .hero-rating {
        justify-content: flex-start; /* Align left on desktop */
    }
}


/* Blog Page Styles */
.blog-page {
    padding: 60px 0;
}

.blog-page h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Cover the area without distortion */
}

.blog-card h3 {
    font-size: 1.4em;
    color: #6a1b9a; /* Purple color */
    margin: 15px 20px 10px;
}

.blog-card p {
    font-size: 1em;
    color: #555;
    margin: 0 20px 20px;
    flex-grow: 1; /* Allow paragraph to grow and push button down */
}

.blog-card .read-more {
    display: inline-block;
    background-color: #ff9800; /* Orange color */
    color: #fff;
    padding: 10px 20px;
    margin: 0 20px 20px; /* Margin bottom added */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to the start */
}

.blog-card .read-more:hover {
    background-color: #f57c00; /* Darker orange */
}

/* Responsive adjustments for blog grid */
@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* Max 2 columns on tablets and desktops */
    }
}


/* Style for Blog navigation item */
.nav-item-blog {
    background-color: #8A4FFF; /* Purple background */
    color: white; /* White text */
}


/* Single Blog Post Styles */
.blog-post-content {
    padding: 40px 0;
}

.blog-post-content article {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-post-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.blog-post-content h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.blog-post-content h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #555;
}

.blog-post-content p,
.blog-post-content li {
    font-size: 1.1em;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.blog-post-content ul, .blog-post-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.blog-post-content .post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-post-content strong {
    color: #333;
}

.blog-post-content a {
    color: #6a1b9a;
    text-decoration: none;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

.back-to-blog {
    display: inline-block;
    margin-top: 30px;
    font-size: 1.1em;
    color: #6a1b9a;
    text-decoration: none;
    border: 1px solid #6a1b9a;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.back-to-blog:hover {
    background-color: #6a1b9a;
    color: white;
}

/* Reservation Page Styles */
.reservation-page {
    padding: 60px 0;
}

.reservation-page h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.reservation-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reservation-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.reservation-form-container input[type="text"],
.reservation-form-container input[type="email"],
.reservation-form-container input[type="tel"],
.reservation-form-container input[type="datetime-local"],
.reservation-form-container textarea,
.reservation-form-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

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

.reservation-form-container button[type="submit"] {
    background-color: #8A4FFF;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.reservation-form-container button[type="submit"]:hover {
    background-color: #7a3aff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.half-width {
    display: inline-block;
    width: calc(50% - 10px);
    margin-right: 20px;
}

.form-group.half-width:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .form-group.half-width {
        width: 100%;
        margin-right: 0;
    }
}


/* Social Proof Image */
.social-proof-image {
    max-width: 150px; /* Adjust as needed */
    height: auto;
    margin-bottom: 15px;
}


/* Hamburger menu animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



/* FAQ sekcija */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq h2 {
    color: #333;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, #8A4FFF, #9A5FFF);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #7A3FEF, #8A4FFF);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* E-A-T Expertise sekcija */
.expertise {
    padding: 80px 0;
    background-color: #fff;
}

.expertise h2 {
    color: #333;
    margin-bottom: 50px;
}

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

.expertise-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expertise-item:hover {
    transform: translateY(-5px);
    border-color: #8A4FFF;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8A4FFF, #9A5FFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1);
}

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

.expertise-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design za FAQ i Expertise */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .expertise {
        padding: 60px 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-item {
        padding: 25px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-item {
        padding: 20px;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i {
        font-size: 1.5rem;
    }
}
.download-apk {
  background: #7cbd37;    /* crna ili zelena */
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}
.download-apk:hover { background: #333; 
}

.hero-ctas {
  display: flex;
  gap: 1rem;           /* razmak između dugmadi */
  flex-wrap: wrap;
  justify-content: center;
}
/* Optimizacija Font Awesome ikona */
.fa, .fas, .far, .fab {
  font-display: swap; /* Sprečava nevidljivi tekst */
  transform: translateZ(0); /* Poboljšava render */
  backface-visibility: hidden; /* Sprečava treperenje */
}
/* Novi stil za about-teaser sekciju */
    .about-teaser {
        background-color: #f8f8f8;
        padding: 40px 0;
        text-align: center;
    }
    .about-teaser h2 {
        font-size: 2em;
        color: #333;
        margin-bottom: 20px;
    }
    .about-teaser p {
        font-size: 1.1em;
        color: #555;
        max-width: 800px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }
    .about-teaser .cta-button {
        display: inline-block;
        background: #6a1b9a;
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    .about-teaser .cta-button:hover {
        background-color: #4a148c;
    }
    .btn-document {
  display:inline-flex;
  align-items:center;
  gap:.4em;
  background:#007bff;       /* crvena za PDF */
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}
.btn-document:hover { background:#b02a37; }
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.download-apk {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: #7cbd37;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.download-apk:hover {
    background: #5a9a2a;
}

.btn-document {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: #007bff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-document:hover {
    background: #0056b3;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.video-item {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-item h3 {
    text-align: center;
    margin: 15px 0;
    font-size: 1.2em;
    color: #333;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.nav-item-video {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-item-video:hover,
.nav-item-video.active {
    background: #8a2be2; /* Ljubičasta boja kao kod Bloga */
    color: white;
}

                .instagram-media div[style*="padding-top: 19%"], 
                .instagram-media div[style*="padding: 12.5% 0"],
                .instagram-media p,
                .instagram-media div[style*="margin-bottom: 14px"],
                .instagram-media div[style*="margin-bottom: 24px"] {
                    display: none !important;
                }
                
                .instagram-media a[href*="/reel/"] {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 100%;
                    text-decoration: none;
                    color: inherit;
                }
                
                .instagram-media a[href*="/reel/"] > div:first-child {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding: 10px;
                    background: #f8f8f8;
                    border-bottom: 1px solid #eee;
                }
                
                .instagram-media a[href*="/reel/"] > div:first-child div:nth-child(1) {
                    width: 32px;
                    height: 32px;
                    border-radius: 50%;
                    background-color: #F4F4F4;
                }
                
                .instagram-media a[href*="/reel/"] > div:first-child div:nth-child(2) {
                    font-family: Arial, sans-serif;
                    font-size: 13px;
                    font-weight: bold;
                    color: #262626;
                }
               /* Prilagođavanje za mobilne uređaje koristeći Grid */
@media screen and (max-width: 768px) {
    .price-table {
        display: grid;
        grid-template-columns: 1fr;
        min-width: unset;
        border: 1px solid #ddd;
    }
    .price-table thead, .price-table tbody, .price-table tr {
        display: contents; /* Čini redove delom grid-a */
    }
    .price-table th, .price-table td {
        display: block;
        padding: 8px 10px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    .price-table th {
        background-color: #f2f2f2;
        font-weight: 600;
    }
}