:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --color-dark: #1d1d1f;
    --color-light: #f5f5f7;
    --color-gray: #86868b;
    --color-gray-light: #f5f5f7;
    --color-gray-dark: #1d1d1f;
    --font-primary: 'Inter', 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.5;
}

.panel-content {
    animation: fadeSlideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.header-panel.active .panel-content {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Apple-style Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 80px;
    transition: height 0.3s ease-in-out;
    overflow: hidden;
}

.main-header.expanded {
    height: 420px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    padding: 2px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.2);
}

.logo span {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
    font-size: 1.8rem;
}

.logo span {
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover span {
    color: var(--color-gold);
    transform: translateY(-2px);
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.6);

}

.main-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-item a:hover {
    color: #d4af37;
}

/* Header Panels */
.header-panel {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateY(-20px);
}

.header-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.panel-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.contact-info {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;

}

/* Social Icons */
.header-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.social-icon::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {

    .main-nav,
    .header-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: block !important;
        margin-left: auto !important;

    }
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.mega-menu-trigger {
    position: relative;
}

.mega-menu-trigger:hover .mega-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Package Cards Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

}

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

.package-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* sadržaj ide na dno slike */
    align-items: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
    color: white;
    gap: 1rem;
}

.package-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-white);
}

.package-content p {
    font-size: 1rem;
    margin: 0;
    color: var(--color-white);
    opacity: 0.85;
}

.package-content .btn {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}


.package-card #card-starter {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/compressed/starter1.webp') center/cover;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-card #card-pro {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/compressed/pro.webp') center/cover;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-card #card-premium {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/compressed/premium.webp') center/cover;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-card #card-enterprise {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/compressed/enterprise.webp') center/cover;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

/* Industry Cards */
.industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.industry-card:nth-child(1) {
    background-image: url('/assets/img/compressed/lepota1.webp');
    background-size: cover;
}

.industry-card:nth-child(2) {
    background-image: url('/assets/img/compressed/mediscina1.webp');
    background-size: cover;
}

.industry-card:nth-child(3) {
    background-image: url('/assets/img/compressed/restoran1.webp');
    background-size: cover;
}

.industry-card:nth-child(4) {
    background-image: url('/assets/img/compressed/school1.webp');
    background-size: cover;

}

.industry-card:nth-child(5) {
    background-image: url('/assets/img/compressed/gym1.webp');
    background-size: cover;
}

.industry-card:nth-child(6) {
    background-image: url('/assets/img/compressed/cardealer1.webp');
    background-size: cover;
}


.industry-card:nth-child(7) {
    background-image: url('/assets/img/compressed/technologi1.webp');
    background-size: cover;
}

.industry-card:nth-child(8) {
    background-image: url('/assets/img/compressed/enterior.webp');
    background-size: cover;
}


.industry-card:nth-child(9) {
    background-image: url('/assets/img/compressed/pets.webp');
    background-size: cover;
}

.industry-card:nth-child(10) {
    background-image: url('/assets/img/compressed/realestate.webp');
    background-size: cover;
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    z-index: 1;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.681);
    /* ← ovo je zatamnjenje */
    z-index: 1;
}

/* Aktivira se na hover */
.industry-card:hover::after {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
}

.industry-card * {
    position: relative;
    z-index: 2;
}


.industry-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.industry-card h3 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #D4AF37;
}

.industry-card p {
    margin: 0;
    font-size: 0.875rem;
    color: #fff;
    opacity: 0.8;
    text-align: center;
    line-height: 1.4;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem;

}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem 2rem 1rem;

    }

    .industry-card {
        padding: 1rem;
        margin: 0 1rem 0 1rem;
    }

    .industry-card img {
        width: 48px;
        height: 48px;
    }

    .industry-card h3 {
        font-size: 1.1rem;
    }

    .industry-card p {
        font-size: 0.8rem;
    }
}


/* Mobile Menu */
.mobile-menu {
    position: relative;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-dark);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

}

.mobile-menu.active {
    display: block !important;
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: var(--color-dark);
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0%) !important;
    z-index: 99999 !important;

}

.mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.mobile-menu .nav-item {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu .nav-item a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-menu .nav-item a:hover {
    color: var(--color-gold);
}

.mobile-menu .mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    margin-left: auto;

}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mobile-menu-toggle {
    margin-left: auto;
    order: 3;
}


.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        overflow: visible !important;
    }

    .nav-container {
        overflow: visible !important;
    }

    .header-panel {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .main-nav,
    .header-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}


@media (max-width: 768px) {
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../img/compressed/hero-image-pro-mob.webp') center/cover;
    }

    .hero-content {
        max-width: 800px;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 2rem !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: #fff !important;
        text-align: center;
        font-weight: 600;
    }

    .hero p {
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-style: italic;
    }
}


@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.7)),
        url('../img/compressed/hero-image-pro.webp') center/cover;
}

.hero-lcp-fix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Services Section */
.services-preview {
    padding: 6rem 0;
}

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

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.service-card p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.gallery-caption p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .gallery-item {
        margin-bottom: 20px;
    }
}

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

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

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

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

/* Homepage Sections */
.our-packages {
    padding: 8rem 0 4rem;
    background-color: #000;
}

.industry-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.industry-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Book Now Button */
.book-now-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #D4AF37;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.book-now-btn:hover {
    background: #fff;
    transform: translateX(-50%) translateY(0);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    background: #D4AF37;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #fff;
    transform: translateY(-2px);
}




/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none;
}

.mega-menu.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Scroll Effects */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #000;
    transition: transform 0.3s ease;
}

.main-header.scroll-down {
    transform: translateY(-100%);
}

.main-header.scroll-up {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-container {}

    .book-now-btn {
        bottom: 10px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .mega-menu {
        display: none !important;
    }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 4rem 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.floating-button i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-button::before {
    content: attr(aria-label);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-button:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.floating-button.phone {
    background: var(--color-gold);
}

.floating-button.viber {
    background: #7360f2;
}

.floating-button.whatsapp {
    background: #25D366;
}

.floating-button.telegram {
    background: #0088cc;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-button {
        width: 45px;
        height: 45px;
    }

    .floating-button i {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background-color: #0d0d0d;
    color: #cccccc;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.contact-info p {
    font-size: x-large;
    margin: 0.5rem 0;
}

.social-icons {
    font-size: x-large;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons img {
    width: 30px;
    height: 30px;
    filter: invert(1);
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .social-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        max-width: 200px;
        /* prilagodi po potrebi */
        margin: 0 auto;
    }

    .social-icons a {
        flex: 0 0 calc(33.3% - 10px);
        /* 2 po redu sa razmakom */
        display: flex;
        justify-content: center;
    }

}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    background: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}