* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    background:
        radial-gradient(circle at 70% 30%, rgba(229,193,111,0.08), transparent 40%),
        linear-gradient(to bottom, #0a0a0a, #050505);
    color: white;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    z-index: 2000;
    box-shadow: 0 0 10px rgba(229,193,111,0.7);
}

/* =========================================
   NavBar
========================================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 60px;
    z-index: 1000;
    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    padding: 15px 60px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e5c16f;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    box-shadow: 0 0 10px rgba(229,193,111,0.7);
}

.contact-btn {
    border: 1px solid #e5c16f;
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    color: black;
}

/* =========================================
   Hero Sekcija
========================================= */

.hero {
    position: relative;
    height: 100vh;
    background: url("slike/bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%, 
    #0a0a0a 100%);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.19), rgba(0, 0, 0, 0.379));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
}

.title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-text {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gold-text {
    font-size: 75px;
    font-weight: 800;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(229, 194, 111, 0.39);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: 85px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    transform: rotate(-4deg);
    line-height: 1;
    text-shadow:
        0 0 4px rgba(255,255,255,0.6),
        0 0 8px rgba(255,255,255,0.4);
}

.script-text::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    width: 25%;
    height: 4px;
    border-radius: 50px;
    background: #ffffff;
    box-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 18px rgba(255,255,255,0.6);
}

.subtitle {
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 600;
}

.features {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.8;
}

.buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 18px 40px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.gold-btn {
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    color: black;
    box-shadow: 0 0 20px rgba(229,193,111,0.6);
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(229,193,111,0.9);
}

.dark-btn {
    background: transparent;
    border: 2px solid #e5c16f;
    color: #e5c16f;
}

.dark-btn:hover {
    background: #e5c16f;
    color: black;
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .top-text {
        font-size: 40px;
    }

    .gold-text {
        font-size: 50px;
    }

    .script-text {
        font-size: 50px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.about {
    padding: 120px 80px;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background: 
    linear-gradient(to top, rgba(0,0,0,0) 0%, #0a0a0a 100%),
    url("slike/bg2.png") center/cover no-repeat;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    flex-wrap: wrap; /* KLJUČNO */
}

.about-left {
    flex: 1 1 500px;
    min-width: 0;
}

.about-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon {
    background: linear-gradient(135deg, #e5c16f, #b98a2f);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: black;
    box-shadow: 0 0 15px rgba(229,193,111,0.6);
}

.feature h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.feature p {
    font-size: 14px;
    opacity: 0.7;
}

/* =========================================
   Desna Strana
========================================= */

.about-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.stats-card {
    background: #111;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(229,193,111,0.4);
    box-shadow: 0 0 40px rgba(229,193,111,0.15);
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
    max-width: 400px;
}

.stat h3 {
    font-size: 36px;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    font-size: 14px;
    opacity: 0.7;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .about-container {
        gap: 60px;
    }

    .about-left h2 {
        font-size: 36px;
    }

}

@media (max-width: 768px) {

    .about {
        min-height: auto;
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
        text-align: center;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h2 {
        font-size: 30px;
    }

    .about-left p {
        font-size: 16px;
    }

    .stats-card {
        max-width: 100%;
    }

    .stat-item h3 {
        font-size: 30px;
    }

}

@media (max-width: 480px) {

    .about-left h2 {
        font-size: 26px;
    }

    .stat-item h3 {
        font-size: 26px;
    }

    .stats-card {
        padding: 35px 20px;
    }

}

/* =========================================
   Rezlutati Sekcija
========================================= */

.results {
    padding: 160px 0;
    background: transparent;
    text-align: center;
    overflow: hidden;
}

.results-header h2 {
    font-size: 44px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.results-header p {
    opacity: 0.6;
    margin-bottom: 40px;
}

/* =========================================
   CounterBox
========================================= */

.counter-box {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 20px 0;
}

.counter-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
}

.plus {
    font-size: 52px;
    color: #ff9d00;
}

.counter {
    font-size: 64px;
    line-height: 1;
}

.counter-text {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    .counter-wrapper {
        flex-direction: column;
        gap: 5px;
    }
    .counter { font-size: 48px; }
    .plus { font-size: 40px; }
}

/* =========================================
   Slider
========================================= */

.slider {
    position: relative;
    overflow: hidden;
}

.slide-track {
    display: flex;
    animation: scroll 10s linear infinite;
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

.slide {
    width: 320px;
    margin: 0 20px;
}

.slide img {
    width: 150px;
    border-radius: 14px;
    border: 1px solid rgba(229,193,111,0.25);
    transition: 0.4s ease;
    cursor: pointer;
}

.slide img:hover {
    transform: scale(1.07);
    box-shadow: 0 0 40px rgba(229,193,111,0.35);
}

/* =========================================
   Fade Efekti
========================================= */

.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #050505, transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #050505, transparent);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   Modal
========================================= */

.image-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at center, #111 0%, #000 100%) !important;
backdrop-filter: blur(5px);
    z-index: 999999 !important;
    display: flex !important; 
    justify-content: center !important;
    align-items: center !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.image-modal.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}
.modal-content {
    max-width: 85% !important;
    max-height: 80vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: auto !important;
    border: 2px solid #e5c16f;
    
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.image-modal.active .modal-content {
    transform: scale(1) !important;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    line-height: 1;
    z-index: 100000;
}

.left-arrow, .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    padding: 20px;
    z-index: 100000;
    transition: 0.3s;
    user-select: none;
}

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

.left-arrow:hover, .right-arrow:hover, .close-modal:hover {
    color: #e5c16f;
}

@media (max-width: 768px) {
    .left-arrow, .right-arrow {
        font-size: 40px;
        padding: 10px;
    }
    .close-modal {
        top: 20px;
        right: 20px;
    }
}

/* =========================================
   Paketi Sekcija
========================================= */

.paketi-sekcija {
    padding: 80px 0;
}

.paketi-container {
    max-width: 1200px;
    margin: 0 auto;
}
.paketi-header {
    text-align: center;
    margin-bottom: 60px;
}
.paketi-header p {
    opacity: 0.6;
    margin-bottom: 40px;
}
.paketi-header h2 {
    font-size: 44px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 0 20px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: #0a0a0a;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: scale(1) translate3d(0, 0, 0);
    transition: transform 1.8s cubic-bezier(0.15, 1, 0.3, 1);
}

.badge {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 15;
    background: linear-gradient(135deg, #b98a2f 0%, #fdf0a6 50%, #e5c16f 100%);
    background-size: 200% auto;
    color: #000;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(229, 193, 111, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.product-card:hover .badge {
    transform: scale(1.1) rotate(-3deg);
    background-position: right center;
}

.badge.best-seller {
    background: linear-gradient(135deg, #fdf0a6 0%, #e5c16f 100%);
}

.product-card:hover {
    transform: translateY(-12px) translate3d(0, 0, 0);
    box-shadow: 0 30px 60px rgba(229, 193, 111, 0.2);
}

.product-card:hover img {
    transform: scale(1.08) translate3d(0, 0, 0);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(90deg, #b98a2f, #fdf0a6, #e5c16f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-btn {
    background: linear-gradient(90deg, #b98a2f, #fdf0a6, #e5c16f);
    color: #000;
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.product-card:hover .product-title,
.product-card:hover .view-btn { transform: translateY(0); }

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 15px;
    animation: modalIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =========================================
   NAJPRODAVANIJA ROBA – RESPONSIVE FIX
========================================= */

/* Tablet */
@media (max-width: 992px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-card img {
        height: 420px;
    }

}

/* Mobilni */
@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 25px;
    }

    .product-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .product-card img {
        height: 380px;
    }

    .product-title {
        font-size: 22px;
    }

}

/* Mali telefoni */
@media (max-width: 480px) {

    .product-card {
        max-width: 300px;
    }

    .product-card img {
        height: 320px;
    }

    .product-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .view-btn {
        padding: 12px 24px;
        font-size: 11px;
    }

}

/* =========================================
   FAQ Sekcija
========================================= */

.faq-section {
    position: relative;
    padding: 220px 20px 180px 20px;
    background-color: #050505;
    overflow: hidden;
}

/* =========================================
   Stabilan i Fiksiran Background
========================================= */

.faq-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #0a0a0a 0%, rgba(0,0,0,0.93) 40%, #050505 100%),
        url("slike/background.png") center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

/* =========================================
   Seamless Blend + Prethodna Sekcija
========================================= */

.faq-blend-top {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    z-index: 1;
}

/* =========================================
   Gold Light Efekat
========================================= */

.faq-light-beam {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 1200px;
    background: radial-gradient(circle at center,
        rgba(229,193,111,0.08),
        transparent 70%);
    transform: rotate(25deg);
    animation: beamMove 18s linear infinite;
    z-index: 1;
}

@keyframes beamMove {
    0% { transform: rotate(25deg) translateX(-200px); }
    50% { transform: rotate(25deg) translateX(400px); }
    100% { transform: rotate(25deg) translateX(-200px); }
}

/* =========================================
   Cursor Glow Efekat
========================================= */

.faq-cursor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229,193,111,0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 100px;
}

.faq-header h2 {
    font-size: 54px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    opacity: 0.6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: rgba(15,15,15,0.85);
    border: 1px solid rgba(229,193,111,0.15);
    border-radius: 24px;
    backdrop-filter: blur(25px);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(229,193,111,0.6);
    box-shadow: 0 0 50px rgba(229,193,111,0.2);
    transform: translateY(-4px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
}

.faq-icon {
    font-size: 30px;
    color: #e5c16f;
    transition: transform 0.5s ease;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer-inner {
    padding: 0 40px 40px 40px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.faq-answer-inner p {
    line-height: 1.9;
    opacity: 0.8;
    font-size: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Reviews Sekcija
========================================= */

.reviews-section {
    position: relative;
    padding: 140px 8%;
    background: linear-gradient(to bottom, #0b0b0b, #111);
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.reviews-subtitle {
    font-size: 16px;
    color: #aaaaaa;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* =========================================
   Review Card Opcija
========================================= */

.review-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    cursor: pointer;

    transform: translateY(60px);
    opacity: 0;
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card.active {
    transform: translateY(0);
    opacity: 1;
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.review-card:hover img {
    transform: scale(1.05);
}

img.protected {
    pointer-events: none;  /* ne klikaju se */
}

/* Slike recenzija */
img.review-image {
    pointer-events: auto;  /* klikabilne */
    cursor: pointer;       /* pokazuje ruku */
}

/* =========================================
   Premium Order Glow
========================================= */

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(229,193,111,0.4), transparent);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* =========================================
   Sakrijemo strelice na jednoj slici
========================================= */

.image-modal .left-arrow,
.image-modal .right-arrow {
    transition: opacity 0.3s ease;
}


/* ==========================================
   HAMBURGER
========================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #d4af37;
    transition: 0.4s;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   MOBILE MENU OVERLAY
========================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: 0.5s ease;
    z-index: 1500;
}

.mobile-menu a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    letter-spacing: 3px;
}

.mobile-menu.active {
    right: 0;
}

/* ==========================================
   MOBILE CTA
========================================== */

.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg,#d4af37,#f5d77a);
    text-align: center;
    padding: 16px 0;
    z-index: 1200;
}

.mobile-cta a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
}

/* ==========================================
   REVIEWS MOBILE CAROUSEL
========================================== */

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
    }

    .review-card {
        min-width: 85%;
        scroll-snap-align: center;
    }

    .mobile-cta {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}


/* =========================================
   Usluge Sekcija - Kompletan CSS
========================================= */

/* SEKCJA */
.usluge-sekcija {
    padding: 80px 0;
}

.usluge-container {
    max-width: 1200px;
    margin: 0 auto;
}

.usluge-header {
    text-align: center;
    margin-bottom: 60px;
}

.usluge-header p {
    opacity: 0.6;
    margin-bottom: 40px;
}

.usluge-header h2 {
    font-size: 44px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #e5c16f, #b98a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */
.usluge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 0 20px;
}

/* CARD */
.usluge-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: #0a0a0a;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.usluge-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    filter: blur(6px) brightness(0.6);
    transition: transform 0.6s cubic-bezier(0.15,1,0.3,1),
                filter 0.5s ease;
}

/* Telegram FREE kartica - uklanja blur i tamnjenje */
.usluge-card.free-card img {
    filter: brightness(1) blur(0);
}

/* Hover efekat ostaje isti za scale */
.usluge-card.free-card:hover img {
    transform: scale(1.08);
}

/* BADGE */
.badge {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 15;
    background: linear-gradient(135deg, #b98a2f, #fdf0a6, #e5c16f);
    color: #000;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
}

/* DEFAULT TEKST PO DEFAULT-U */
.default-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);

    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 15;
    pointer-events: none;
}
/* NESTANAK DEFAULT TEKSTA NA HOVER */
.usluge-card:hover .default-title {
    opacity: 0;
}

/* HOVER CONTENT */
.usluge-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
    z-index: 20;
}

.usluge-card:hover .usluge-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.65);
}

/* TITLE & BUTTON */
.usluge-title {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #b98a2f, #fdf0a6, #e5c16f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1),
                opacity 0.5s ease;
}

.view-btn {
    background: linear-gradient(90deg, #b98a2f, #fdf0a6, #e5c16f);
    color: #000;
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1),
                opacity 0.5s ease;
}

/* HOVER EFFECT - TITLE & BUTTON */
.usluge-card:hover .usluge-title,
.usluge-card:hover .view-btn {
    transform: translateY(0);
    opacity: 1;
}

/* IMAGE SCALE NA HOVER */
.usluge-card:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .usluge-grid { grid-template-columns: repeat(2,1fr); gap:25px; }
    .usluge-card img { height:420px; }
}

/* Mobile */
@media (max-width: 768px) {
    .usluge-grid { grid-template-columns: 1fr; gap:25px; padding:0 25px; }
    .usluge-card { max-width:360px; margin:0 auto; }
    .usluge-card img { height:380px; }
    .usluge-title { font-size:22px; }
}

/* Small phones */
@media (max-width: 480px) {
    .usluge-card { max-width:300px; }
    .usluge-card img { height:320px; }
    .usluge-title { font-size:18px; }
    .view-btn { padding:12px 24px; font-size:11px; }
}