/* ============================================
   ULTRA-LUXURY CSS - PREMIUM DESIGN SYSTEM
   KOMPLETAN SA SVIM STILOVIMA
   ============================================ */

/* === LUXURY VARIJABLE === */
:root {
    --deep-black: #0D0D0D;
    --dark-gray: #1A1A1A;
    --luxury-gold: #BFA14A;
    --gold-light: #D4C18A;
    --gold-dark: #8B6F2F;
    --gold-bright: #d4af37;
    --cream: #F5F5F5;
    --white: #FFFFFF;
    --gray-light: #2A2A2A;
    --gray-medium: #333333;
    --gray-text: #e0e0e0;
    --gray-soft: #cccccc;
}

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

body {
    font-family: 'Open Sans', 'Inter', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--cream);
    background: var(--deep-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 90px;
}

main {
    flex: 1;
    width: 100%;
}

.luxury-font {
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

/* === HEADER === */
.luxury-header {
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid var(--luxury-gold);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(191, 161, 74, 0.4));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-gold);
    font-weight: 700;
}

/* === NAVIGATION === */
.luxury-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--luxury-gold);
}

/* === REZERVIRAJ BUTTON === */
.nav-btn-reserve {
    display: inline-block;
    border: 2px solid var(--luxury-gold) !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px !important;
    color: var(--luxury-gold) !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.nav-btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-btn-reserve:hover::before {
    left: 0;
}

.nav-btn-reserve:hover {
    color: var(--deep-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 161, 74, 0.4);
}

/* === LANGUAGE SWITCHER === */
.language-switcher-header {
    font-size: 0.8rem;
    margin-left: 10px;
}

.lang-link {
    text-decoration: none;
    color: var(--white);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.lang-link.active {
    color: var(--luxury-gold);
    font-weight: bold;
    opacity: 1;
}

.lang-link:hover {
    opacity: 1;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.3rem;
}

/* === MOBILE MENU === */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--luxury-gold);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

@media (max-width: 900px) {
    body {
        padding-top: 75px;
    }
    
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .luxury-nav {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--dark-gray);
        padding: 2rem 0;
        border-bottom: 2px solid var(--luxury-gold);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .luxury-nav.active {
        transform: translateY(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-btn-reserve {
        width: 80%;
        text-align: center;
        margin: 1rem auto 0;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .logo-image {
        height: 50px;
    }
}

/* === HERO SECTION === */
.luxury-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(191, 161, 74, 0.05) 0%, transparent 70%),
                var(--deep-black);
}

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

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(191, 161, 74, 0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === LUXURY BUTTON === */
.luxury-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--gold-bright) 50%, var(--luxury-gold) 100%);
    background-size: 200% 100%;
    color: var(--deep-black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 8px 30px rgba(191, 161, 74, 0.2);
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}

.luxury-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(191, 161, 74, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                0 12px 40px rgba(191, 161, 74, 0.4);
}

.luxury-btn:active {
    transform: translateY(-1px) scale(1);
}

/* === SECONDARY BUTTON === */
.luxury-btn-secondary {
    background: transparent;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.2);
}

.luxury-btn-secondary::before {
    display: none;
}

.luxury-btn-secondary:hover {
    background: rgba(191, 161, 74, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

/* === INTRO SECTION === */
.luxury-intro {
    padding: 3rem 1.5rem;
    background: var(--dark-gray);
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(17, 17, 17, 0.8));
    border: 1px solid rgba(191, 161, 74, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.intro-price-tag {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--luxury-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(191, 161, 74, 0.5);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.usp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.usp-item {
    background: rgba(191, 161, 74, 0.1);
    border: 1px solid rgba(191, 161, 74, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 1rem;
}

/* === FOMO BADGE === */
.fomo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--luxury-gold), var(--gold-bright));
    color: var(--deep-black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 5px 20px rgba(191, 161, 74, 0.5);
    transition: all 0.3s ease;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(191, 161, 74, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(191, 161, 74, 0.8);
    }
}

.fomo-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(191, 161, 74, 0.7);
}

/* === SERVICES SECTION === */
.luxury-services {
    padding: 5rem 1.5rem;
    background: var(--deep-black);
}

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

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--luxury-gold);
    font-style: italic;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, var(--dark-gray), #111);
    border: 1px solid rgba(191, 161, 74, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--gold-bright));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(191, 161, 74, 0.2);
    border-color: rgba(191, 161, 74, 0.4);
}

.service-image {
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(1deg);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    color: var(--gray-soft);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-weight: bold;
}

/* === ADULT BUTTON === */
.adult-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--gold-bright) 50%, var(--luxury-gold) 100%);
    background-size: 200% 100%;
    color: var(--deep-black);
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.adult-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.adult-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(191, 161, 74, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.adult-btn-secondary {
    background: transparent;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.2);
}

.adult-btn-secondary::before {
    display: none;
}

.adult-btn-secondary:hover {
    background: rgba(191, 161, 74, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

/* === FEATURES SECTION === */
.luxury-features {
    padding: 5rem 1.5rem;
    background: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.5), rgba(17, 17, 17, 0.3));
    border: 1px solid rgba(191, 161, 74, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(191, 161, 74, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(191, 161, 74, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(191, 161, 74, 0.3));
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1rem;
}

/* === CTA SECTION === */
.luxury-cta {
    padding: 5rem 1.5rem;
    background: radial-gradient(ellipse at center, rgba(191, 161, 74, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse at top, rgba(191, 161, 74, 0.05) 0%, transparent 50%),
                var(--deep-black);
    text-align: center;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

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

/* === FOOTER === */
.footer-sections {
    background: var(--dark-gray);
    color: var(--cream);
    padding: 3rem 2rem;
    border-top: 1px solid var(--luxury-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h3 {
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--cream);
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.luxury-footer {
    background: var(--deep-black);
    color: var(--cream);
    padding: 2rem 2rem;
    border-top: 1px solid var(--luxury-gold);
}

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

.footer-bottom p {
    margin: 0.8rem 0;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gold-light);
}

.footer-bottom p:first-child {
    color: var(--luxury-gold);
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.footer-bottom strong {
    color: var(--gold-light);
    font-weight: 600;
}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--luxury-gold);
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-sections {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .luxury-footer {
        padding: 1.5rem 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-sections {
        padding: 1.5rem 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .luxury-footer {
        padding: 1rem 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .intro-price-tag {
        font-size: 2rem;
    }
    
    .luxury-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

a:focus-visible,
button:focus-visible,
.nav-menu a:focus-visible,
.lang-link:focus-visible,
.logo-link:focus-visible {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

/* === SMOOTH SCROLL === */
html {
    scroll-behavior: smooth;
}

/* === CONTENT WRAPPER === */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.service-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.service-description p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
/* ============================================
   MASKOTE ALERT SEKCIJA - Dodati u style.css
   ============================================ */

/* === MASCOT ALERT SECTION === */
.mascot-alert-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, rgba(191, 161, 74, 0.05) 0%, transparent 50%),
                var(--dark-gray);
}

.mascot-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(17, 17, 17, 0.8));
    border: 2px solid rgba(191, 161, 74, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(191, 161, 74, 0.1);
}

.mascot-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(191, 161, 74, 0.2);
}

.mascot-title span {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--luxury-gold);
    font-weight: 700;
}

.mascot-text {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.mascot-text p {
    margin-bottom: 1.5rem;
}

.mascot-text strong {
    color: var(--luxury-gold);
    font-weight: 600;
}

.mascot-better-option {
    background: rgba(191, 161, 74, 0.08);
    border-left: 4px solid var(--luxury-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.mascot-better-option strong {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.mascot-better-option p {
    color: var(--cream);
    line-height: 1.8;
    margin: 0;
}

/* Emoji icon stil */
.mascot-title::before {
    content: '🧸';
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(191, 161, 74, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .mascot-box {
        padding: 2rem 1.5rem;
    }
    
    .mascot-title {
        flex-direction: column;
        text-align: center;
    }
    
    .mascot-title span {
        font-size: 1.6rem;
    }
    
    .mascot-text {
        font-size: 1rem;
    }
    
    .mascot-better-option {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .mascot-alert-section {
        padding: 3rem 1rem;
    }
    
    .mascot-box {
        padding: 1.5rem 1rem;
    }
    
    .mascot-title span {
        font-size: 1.4rem;
    }
    
    .mascot-text {
        font-size: 0.95rem;
    }
}
/* ============================================
   ELEGANTNI STILOVI ZA CIJENE - Dodati u style.css
   ============================================ */

/* === SERVICE PRICE STYLING === */
.service-price,
.intro-price-tag,
[class*="_price"],
.price-tag {
    font-family: 'Playfair Display', serif !important;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--gold-bright) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    position: relative;
    display: inline-block;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 8px rgba(191, 161, 74, 0.4));
}

/* Alternativni stil - Zlatna s blagim glow-om */
.service-features + .service-price,
.adult-btn + .service-price {
    background: var(--luxury-gold);
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--deep-black) !important;
    background-clip: unset !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 1.8rem !important;
}

/* Intro price tag (Hero sekcija) */
.intro-price-tag {
    font-size: 3rem !important;
    letter-spacing: 1px;
    margin: 1.5rem 0;
    animation: price-pulse 3s ease-in-out infinite;
}

@keyframes price-pulse {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(191, 161, 74, 0.4));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(191, 161, 74, 0.6));
    }
}

/* Price u service karticama */
.service-content .service-price {
    font-size: 2rem;
    margin-top: 1rem;
    display: block;
}

/* Hover efekt na service card pokazuje cijenu */
.service-card:hover .service-price {
    animation: price-highlight 0.6s ease;
}

@keyframes price-highlight {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Price badge stil (Opciono) */
.price-badge {
    background: linear-gradient(135deg, var(--luxury-gold), var(--gold-bright));
    color: var(--deep-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.price-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

/* Cijena u feature items */
.feature-item .price-tag {
    font-size: 2.5rem;
    margin: 1rem 0;
    display: block;
}

/* Responsive cijene */
@media (max-width: 768px) {
    .intro-price-tag {
        font-size: 2.5rem !important;
    }
    
    .service-content .service-price {
        font-size: 1.8rem;
    }
    
    .feature-item .price-tag {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .intro-price-tag {
        font-size: 2rem !important;
    }
    
    .service-content .service-price {
        font-size: 1.5rem;
    }
    
    .price-badge {
        font-size: 1.3rem;
        padding: 0.6rem 1.5rem;
    }
}

/* EUR/€ symbol styling */
.price-tag .currency,
.service-price .currency {
    font-size: 0.8em;
    opacity: 0.9;
}
/* === CAPTCHA CANVAS STYLES === */
canvas#captchaCanvas {
    background-color: #222;
    border: 1px solid #444;
    border-radius: 6px;
    cursor: default; /* Onemogućuje kursor za tekst */
    margin-right: 10px;
    vertical-align: middle;
    /* Sprječava selektiranje canvasa kao slike */
    user-select: none;
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
}

.captcha-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

/* Prilagodba refresh gumba da bude uz canvas */
.refresh-btn {
    background: #BFA14A;
    color: #0D0D0D;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.refresh-btn:hover {
    background: #d4af37;
}
/* ============================================
   NOVO: LUXURY PROCESS SECTION (KORACI)
   ============================================ */
.luxury-process {
    padding: 5rem 1.5rem;
    background: #0D0D0D;
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(191, 161, 74, 0.1);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #BFA14A;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.process-subtitle {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    padding: 20px;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(191, 161, 74, 0.2));
    transition: transform 0.3s ease;
}

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

.step-number {
    font-size: 0.9rem;
    color: #444;
    border: 1px solid #444;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-family: monospace;
    background: #0D0D0D;
}

.step-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step-name span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #BFA14A 0%, #F2E2A4 50%, #BFA14A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.step-desc {
    color: #888;
    font-size: 0.95rem;
    max-width: 200px;
    line-height: 1.6;
}

.step-connector {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin-top: 60px;
    position: relative;
    max-width: 150px;
}

.step-connector::after {
    content: '→';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 1.2rem;
}

.process-cta {
    margin-top: 4rem;
}

/* ============================================
   NOVO: RIBBON (TRAKA "HOT")
   ============================================ */
/* Osigurava da traka ne izlazi van kartice */
.service-card {
    position: relative !important;
    overflow: hidden !important; 
}

.ribbon-hot {
    position: absolute;
    top: 20px;
    right: -35px;
    width: 150px;
    background: linear-gradient(135deg, #BFA14A 0%, #d4af37 100%); /* Zlatna */
    color: #000;
    font-weight: 800;
    text-align: center;
    padding: 7px 0;
    transform: rotate(45deg);
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    z-index: 10;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

/* Opcionalno: Crvena varijanta ako želiš da više iskače */
.ribbon-hot.red {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .process-steps { flex-direction: column; gap: 3rem; }
    .step-connector { display: none; }
    .ribbon-hot { font-size: 0.7rem; top: 15px; right: -30px; }
}

/* ============================================
   DODATNI LUXURY STILOVI - FINAL TOUCH
   ============================================ */

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === SELECTION STYLING === */
::selection {
    background: rgba(191, 161, 74, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(191, 161, 74, 0.3);
    color: #fff;
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #BFA14A, #8B6F2F);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D4C18A, #BFA14A);
}

/* === FOCUS STATES FOR ACCESSIBILITY === */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #BFA14A;
    outline-offset: 2px;
}

/* === IMPROVED FORM STYLES === */
input, select, textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #BFA14A !important;
    box-shadow: 0 0 0 3px rgba(191, 161, 74, 0.2) !important;
}

/* === PRIVACY CHECKBOX STYLING === */
.privacy-consent-wrapper {
    background: rgba(191, 161, 74, 0.05);
    border: 1px solid rgba(191, 161, 74, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 1.5rem;
}

.privacy-consent-wrapper.input-error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.privacy-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #BFA14A;
    cursor: pointer;
}

.privacy-checkbox span {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* === LOADING ANIMATION === */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* === LUXURY CARD HOVER EFFECTS === */
.glass-card,
.service-card,
.feature-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* === GOLD SHIMMER TEXT EFFECT === */
.gold-shimmer {
    background: linear-gradient(90deg, #BFA14A, #FFD700, #BFA14A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* === IMPROVED BUTTON HOVER === */
.luxury-btn,
.btn-gold,
.adult-btn {
    position: relative;
    overflow: hidden;
}

.luxury-btn::after,
.btn-gold::after,
.adult-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.luxury-btn:hover::after,
.btn-gold:hover::after,
.adult-btn:hover::after {
    left: 100%;
}

/* === IMPROVED IMAGE LOADING === */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* === REDUCED MOTION SUPPORT === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* === PRINT STYLES === */
@media print {
    .luxury-header,
    .contact-widget,
    .cookie-banner,
    .footer-sections,
    .luxury-footer {
        display: none !important;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
        padding-top: 0 !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}

/* LUKSUZNI PREMIUM DODACI */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Cinzel:wght@600;800&display=swap');

h1,h2,h3,.luxury-font{font-family:'Playfair Display',serif;font-weight:900;background:linear-gradient(135deg,#F4E4C1 0%,#D4AF37 50%,#F4E4C1 100%);background-size:200%;-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:shimmer 4s infinite;}
@keyframes shimmer{0%,100%{background-position:0%}50%{background-position:100%}}

.service-card{background:linear-gradient(145deg,#1A1A1A,#252525);border:1.5px solid rgba(212,175,55,0.3);box-shadow:0 10px 40px rgba(0,0,0,0.7);transition:all 0.6s;}
.service-card:hover{transform:translateY(-15px) scale(1.03);border-color:rgba(212,175,55,0.8);box-shadow:0 25px 70px rgba(212,175,55,0.35);}

.luxury-photo img,.service-image img{transition:all 1s;filter:brightness(0.92) contrast(1.08);}
.luxury-photo:hover img,.service-image:hover img{transform:scale(1.15) rotate(2deg);filter:brightness(1.05) contrast(1.15);}

.luxury-btn,.adult-btn{font-family:'Cinzel',serif;background:linear-gradient(135deg,#C5A059,#D4AF37,#E5C878);color:#0A0A0A!important;font-weight:900;text-transform:uppercase;letter-spacing:3px;border:3px solid #FFD700;box-shadow:0 6px 25px rgba(212,175,55,0.5);transition:all 0.5s;}
.luxury-btn:hover,.adult-btn:hover{transform:translateY(-6px) scale(1.05);box-shadow:0 15px 50px rgba(212,175,55,0.7);}

.service-price,.intro-price-tag{font-family:'Playfair Display',serif!important;font-size:2rem!important;font-weight:900!important;background:linear-gradient(135deg,#F4E4C1,#FFD700,#D4AF37,#FFD700,#F4E4C1);background-size:300%;-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:shimmer 3.5s infinite;}

.feature-item{background:linear-gradient(145deg,#141414,#1A1A1A);border:1.5px solid rgba(212,175,55,0.25);transition:all 0.5s;}
.feature-item:hover{transform:translateY(-12px) scale(1.04);border-color:rgba(212,175,55,0.7);box-shadow:0 20px 55px rgba(212,175,55,0.3);}

.ribbon-hot,.ribbon-super-hot{background:linear-gradient(135deg,#FFD700,#FFA500,#FFD700);background-size:200%;animation:ribbon 2.5s infinite;}
@keyframes ribbon{0%,100%{background-position:0%;filter:brightness(100%)}50%{background-position:100%;filter:brightness(130%)}}
/* ============================================
   LUKSUZNI ČAROBNI NASLOVI - MAĐIONIČAR
   ============================================ */

.section-title-luxury-wrapper {
    text-align: center !important;
    position: relative;
    margin: 0 auto 3rem auto;
    max-width: 100%;
}

.section-title-luxury {
    font-family: 'Playfair Display', serif !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    display: inline-block !important;
    background: linear-gradient(
        135deg, 
        #BFA14A 0%, 
        #FFD700 12%,
        #F5E6B3 25%,
        #BFA14A 37%, 
        #E5D4A1 50%,
        #FFD700 62%,
        #BFA14A 75%,
        #8B6F2F 87%, 
        #BFA14A 100%
    ) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: luxuryGoldShine 6s ease infinite !important;
    text-shadow: none !important;
    letter-spacing: 2px !important;
    line-height: 1.3 !important;
    padding: 0 60px !important;
    color: #BFA14A;
}

/* Zlatne zvjezdice oko naslova */
.section-title-luxury::before {
    content: '✨' !important;
    position: absolute !important;
    left: -10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 2.8rem !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #FFD700 !important;
    background-clip: initial !important;
    color: #FFD700 !important;
    animation: sparkleLeft 3s ease-in-out infinite !important;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) !important;
    z-index: 10 !important;
}

.section-title-luxury::after {
    content: '✨' !important;
    position: absolute !important;
    right: -10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 2.8rem !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #FFD700 !important;
    background-clip: initial !important;
    color: #FFD700 !important;
    animation: sparkleRight 3s ease-in-out infinite 0.5s !important;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) !important;
    z-index: 10 !important;
}

/* Zlatna dekorativna linija ispod */
.section-title-luxury-wrapper::after {
    content: '' !important;
    position: absolute !important;
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 180px !important;
    height: 3px !important;
    background: linear-gradient(90deg, transparent, #BFA14A, #FFD700, #BFA14A, transparent) !important;
    box-shadow: 0 0 20px rgba(191, 161, 74, 0.7) !important;
    border-radius: 2px !important;
}

/* Podnaslov u wrapperu */
.section-title-luxury-wrapper > p {
    text-align: center !important;
    color: #999 !important;
    font-size: 1.1rem !important;
    margin: 1rem 0 0 0 !important;
    font-style: italic !important;
}

/* Animacije */
@keyframes luxuryGoldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sparkleLeft {
    0%, 100% { 
        opacity: 0.5; 
        transform: translateY(-50%) scale(0.85) rotate(-10deg); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.3) rotate(10deg); 
    }
}

@keyframes sparkleRight {
    0%, 100% { 
        opacity: 0.5; 
        transform: translateY(-50%) scale(0.85) rotate(10deg); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.3) rotate(-10deg); 
    }
}

/* Responsive - Mobilni */
@media (max-width: 768px) {
    .section-title-luxury {
        font-size: 2.2rem !important;
        padding: 0 20px !important;
        letter-spacing: 1px !important;
    }
    
    .section-title-luxury::before,
    .section-title-luxury::after {
        font-size: 2rem !important;
        left: -5px !important;
        right: -5px !important;
    }
    
    .section-title-luxury-wrapper::after {
        width: 120px !important;
    }
}

@media (max-width: 480px) {
    .section-title-luxury {
        font-size: 1.8rem !important;
    }
    
    .section-title-luxury::before,
    .section-title-luxury::after {
        display: none !important;
    }
}