    /* HERO SLIDER STYLES */
    .hero-section {
        position: relative;
        margin-top: 50px;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }

        .hero-slide.active {
            opacity: 1;
        }

    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(10, 25, 41, 0.7), rgba(10, 25, 41, 0.5));
    }

    .hero-slide-content {
        position: relative;
        z-index: 2;
        color: var(--cream);
        text-align: center;
        padding-top: 120px;
    }
    /* Hero Content Styles */
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        line-height: 1.6;
    }

    .hero-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .hero-section {
            height: 90vh;
            min-height: 500px;
        }

        .hero-slide-content {
            padding-top: 80px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            height: 90vh;
            min-height: 400px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }
    }
    /* OSTALI STILOVI OSTAJU ISTI */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 56px;
    }

    .btn-primary {
        background: var(--gold);
        color: var(--bottle-green);
        border-color: var(--gold);
    }

        .btn-primary:hover {
            background: var(--dark-gold);
            border-color: var(--dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

    .btn-accent {
        background: var(--accent-green);
        color: var(--white);
        border-color: var(--accent-green);
    }

        .btn-accent:hover {
            background: #1e7e34;
            border-color: #1e7e34;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
        }

    .btn-outline {
        background: transparent;
        color: var(--cream);
        border-color: var(--cream);
    }

        .btn-outline:hover {
            background: var(--cream);
            color: var(--bottle-green);
            transform: translateY(-3px);
        }
    /* SECTIONS */
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
        color: var(--cream);
        margin-bottom: 0;
    }

    .section-link {
        color: var(--gold);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
    }

    .mobile-section-link {
        display: none;
        text-align: center;
        margin-top: 3rem;
    }
    /* NEWS SECTION */
    .news-section {
        margin: 4rem 0;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .news-card {
        background: var(--section-light);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid rgba(181, 134, 11, 0.3);
    }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            border-color: var(--gold);
        }

    .news-image {
        height: 250px;
        overflow: hidden;
    }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .news-card:hover .news-image img {
        transform: scale(1.1);
    }

    .news-image-placeholder {
        height: 250px;
        background: var(--section-medium);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-gold);
        font-size: 4rem;
    }

    .news-content {
        padding: 2rem;
    }

    .news-title {
        font-size: 1.5rem;
        color: var(--cream);
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .news-excerpt {
        color: var(--sage);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .news-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .news-date {
        color: var(--dark-gold);
        font-size: 0.9rem;
    }

    .news-link {
        color: var(--gold);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
    }
    /* SERVICES SECTION */
    .services-section {
        padding: 6rem 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }

    .service-card {
        background: var(--section-light);
        padding: 3rem 2rem;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid rgba(181, 134, 11, 0.3);
    }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            border-color: var(--gold);
        }

    .service-icon {
        font-size: 4rem;
        color: var(--gold);
        margin-bottom: 2rem;
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-icon {
        transform: scale(1.2);
    }

    .service-title {
        font-size: 1.75rem;
        color: var(--cream);
        margin-bottom: 1.5rem;
    }

    .service-description {
        color: var(--sage);
        margin-bottom: 2rem;
        line-height: 1.6;
        font-size: 1.1rem;
    }
    /* CONTACT SECTION */
    .contact-section {
        padding: 5rem 0;
    }

    .contact-card {
        background: var(--section-light);
        padding: 3rem;
        border-radius: 16px;
        text-align: center;
        border: 2px solid rgba(181, 134, 11, 0.3);
    }

    .contact-title {
        font-size: 2rem;
        color: var(--cream);
        margin-bottom: 2rem;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        color: var(--sage);
        font-size: 1.1rem;
    }

        .contact-item i {
            color: var(--gold);
            font-size: 1.3rem;
        }
    /* RESPONSIVE */
    @media (max-width: 768px) {
        .btn {
            width: 100%;
            max-width: 280px;
            padding: 14px 28px;
        }

        .section-header {
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-link {
            display: none;
        }

        .mobile-section-link {
            display: block;
        }

        .news-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .contact-info {
            grid-template-columns: 1fr;
        }

        .service-card {
            padding: 2.5rem 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .services-section {
            padding: 4rem 0;
        }

        .service-card {
            padding: 2rem 1.5rem;
        }

        .contact-section {
            padding: 3rem 0;
        }
    }
/* ABOUT SECTION */
.about-section {
    padding: 6rem 0;
    background: var(--section-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--sage);
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    min-width: 50px;
    text-align: center;
}

.feature-text h4 {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--sage);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.about-image {
    position: relative;
    max-width: 500px; 
    margin: 0 auto;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid var(--gold);
    max-width: 100%;
}

    .image-frame img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        max-height: 400px; 
        object-fit: cover; 
    }

    .image-frame:hover img {
        transform: scale(1.05);
    }

/* Responsive */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .feature-icon {
        align-self: center;
    }
}