@import url(jquery-ui.min.css);
@import url(font-awesome.min.css);
@import url(font-awesome-animation.min.css);
@import url(menu.css);
@import url(ace-responsive-menu.css);
@import url(megadropdown.css);
@import url(bootstrap-select.min.css);
@import url(simplebar.min.css);
@import url(progressbar.css);
@import url(flaticon.css);
@import url(animate.css);
@import url(slider.css);
@import url(magnific-popup.css);
@import url(timecounter.css);
@import url(https://fonts.googleapis.com/css?family=Nunito:400,400i,600,700,800,900&display=swap);
html {
    font-size: 100%;
}

body {
    background-attachment: fixed;
    background-color: #ffffff;
    color: #777777;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.642;
    overflow-x: hidden;
    transition: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
body.body_overlay {
    position: fixed;
    transform: translate(0, 0);
    width: 100%;
}
body.body_overlay:before {
    background-color: rgba(0, 108, 112, 0.5);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    transform: translate(360px, 0);
}
img {
    max-width: 100%;
}

p {
    font-size: 14px;
    color: #484848;
    font-weight: 400;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

iframe {
    border: none;
    width: 100%;
}

a {
    color: #555555;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}
a:hover,
a:focus {
    color: #333333;
    text-decoration: none;
    outline: none;
}
a img {
    border: none;
}
.form-control {
    height: 50px;
}
.form-control:active,
.form-control:focus {
    box-shadow: none;
    outline: none;
}

iframe {
    border: none;
}

::selection {
    background: #222222;
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    /* Firefox */
    background: #222222;
    color: #ffffff;
    text-shadow: none;
}

::-webkit-selection {
    /* Safari */
    background: #222222;
    color: #ffffff;
    text-shadow: none;
}

/* ========================================== */
/* WAVE PATTERN BACKGROUND - Reusable Utility */
/* ========================================== */
/* Use this class on any section that needs the wave pattern background */
.wave-pattern-bg {
    position: relative;
    --wave-size: 80px;
    /* control the wave pattern size - larger for more subtle effect */
    --c1: #ff8585;
    /* even lighter, barely visible primary */
    --c2: #f57a82;
    /* even lighter, barely visible secondary */

    /* Ultra-subtle wave pattern gradient definition */
    --_g: #0000, rgba(0, 0, 0, 0.01) 5%, var(--c2) 6% 14%, var(--c1) 16% 24%,
        var(--c2) 26% 34%, var(--c1) 36% 44%, var(--c2) 46% 54%,
        var(--c1) 56% 64%, var(--c2) 66% 74%, var(--c1) 76% 84%,
        var(--c2) 86% 94%, rgba(0, 0, 0, 0.01) 95%, #0000;

    /* Base gradient background */
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    overflow: hidden;
}

/* Ultra-subtle wave pattern overlay */
.wave-pattern-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(100% 50% at 100% 0, var(--_g)),
        radial-gradient(100% 50% at 0 50%, var(--_g)),
        radial-gradient(100% 50% at 100% 100%, var(--_g));
    background-size: var(--wave-size) calc(2 * var(--wave-size));
    opacity: 0.15;
    pointer-events: none;
}

/* ========================================== */
/* WHITE VERSION - Wave Pattern on White Background */
/* ========================================== */
.wave-pattern-bg-white {
    position: relative;
    --wave-size: 80px;
    --c1: #ffffff;
    /* very light gray for subtle pattern */
    --c2: #fff8f8;
    /* slightly darker light gray */

    /* Subtle wave pattern gradient definition for light background */
    --_g: #0000, rgba(0, 0, 0, 0.005) 5%, var(--c2) 6% 14%, var(--c1) 16% 24%,
        var(--c2) 26% 34%, var(--c1) 36% 44%, var(--c2) 46% 54%,
        var(--c1) 56% 64%, var(--c2) 66% 74%, var(--c1) 76% 84%,
        var(--c2) 86% 94%, rgba(0, 0, 0, 0.005) 95%, #0000;

    /* Base white background */
    background: white;
    overflow: hidden;
}

/* Subtle wave pattern overlay for white background */
.wave-pattern-bg-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(100% 50% at 100% 0, var(--_g)),
        radial-gradient(100% 50% at 0 50%, var(--_g)),
        radial-gradient(100% 50% at 100% 100%, var(--_g));
    background-size: var(--wave-size) calc(2 * var(--wave-size));
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure content stays above the pattern */
.wave-pattern-bg-white > * {
    position: relative;
    z-index: 1;
}
/* ========================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Nunito", sans-serif;
    line-height: 1.2;
    color: #484848;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #484848;
    font-weight: 400;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: #484848;
    font-weight: 400;
}

h1,
h2,
h3,
h4 .h1,
.h2,
.h3,
.h4 {
    font-weight: bold;
}

h5,
h6,
.h5,
.h6 {
    font-weight: bold;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 15px;
}

h6,
.h6 {
    font-size: 12px;
}
p,
ul,
ol,
dl,
dt,
dd,
blockquote,
address {
    margin: 0 0 10px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Video Element */
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video Opacity Overlay - ADJUST THIS VALUE */
.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* White overlay - adjust last value (0.0 to 1.0) for opacity */
    pointer-events: none;
    z-index: 1;
}

/* Optional: Dark overlay instead of white */
/* .video-background::after {
            background: rgba(0, 0, 0, 0.5);
        } */

/* Ensure content is above video */
.wrapper {
    position: relative;
    z-index: 1;
}

/* Mobile optimization - pause video on small screens to save bandwidth */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }

    body.maxw1600 {
        max-width: 100% !important;
        width: 100% !important;
    }

    .wrapper {
        overflow-x: hidden;
        max-width: 100%;
    }

    .video-background video {
        display: none;
    }

    /* Fallback background for mobile */
    .video-background {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    overflow-x: hidden;
    overflow-y: visible;
    padding: 80px 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(250, 250, 251, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    padding-right: 0;
    z-index: 3;
}

.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 107, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.12);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 107, 107, 0.85);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 0s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__trust-icon {
    font-size: 14px;
}

.hero__title {
    font-size: 64px;
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 0 32px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero__title-word {
    display: inline-block;
    opacity: 0;
    position: relative;
}

/* Word 1: Odfoť - Camera Recording Effect */
.hero__title-word--1 {
    animation: wordFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0s;
    position: relative;
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title-word--1::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -12px;
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border-radius: 50%;
    opacity: 0;
    animation: recordingDot 1.2s ease-in-out forwards;
    animation-delay: 0s;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7), 0 0 8px rgba(255, 59, 59, 0.6);
}

@keyframes recordingDot {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    5% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    15% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    25% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    35% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    45% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    55% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    65% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    85% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Word 2: Nahraj - Upload Effect with Icon */
.hero__title-word--2 {
    animation: uploadSync 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.hero__title-word--2::after {
    content: "↑";
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%) translateY(0);
    font-size: 40px;
    color: #ff6b6b;
    opacity: 0;
    animation: uploadIcon 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
    font-weight: 900;
}

@keyframes uploadSync {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uploadIcon {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scaleY(1.3);
    }

    40% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }

    65% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-15px) scaleY(0.7);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scaleY(0.4);
    }
}

/* Word 3: Zarábaj - Magnetic Snap Effect */
.hero__title-word--3 {
    animation: magneticSnap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes magneticSnap {
    0% {
        opacity: 0;
        transform: scale(1.2) translateX(-15px);
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        transform: scale(0.96) translateX(2px);
        filter: blur(0);
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
    }

    80% {
        transform: scale(1.02) translateX(-1px);
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: blur(0);
        text-shadow: none;
    }
}

.hero__subtitle {
    font-size: 19px;
    color: rgba(26, 26, 46, 0.75);
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 0.9s;
}

/* CTA Group */
.hero__cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.2s;
}

/* Base CTA Styles */
.hero__cta {
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* Primary CTA (Red) */
.hero__cta--primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.35);
}

.hero__cta--primary::before {
    content: "🎬";
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero__cta--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.5);
    color: white;
    text-decoration: none;
}

.hero__cta--primary:hover::before {
    transform: scale(1.1);
}

/* Primary CTA without icon */
.hero__cta--primary-no-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.35);
}

.hero__cta--primary-no-icon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.5);
    color: white;
    text-decoration: none;
}

/* Secondary CTA (Outlined) */
.hero__cta--secondary {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero__cta--secondary:hover {
    transform: translateY(-3px);
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: #fff5f5;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
    text-decoration: none;
}

.hero__note {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.5;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.5s;
}

.hero__note-icon {
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px;
}

.hero__partners {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.7s;
    overflow: hidden;
}

.hero__partners-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(26, 26, 46, 0.4);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero__partners-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: partnerCarousel 30s linear infinite;
    white-space: nowrap;
}

.hero__partners-logos:hover {
    animation-play-state: paused;
}

@keyframes partnerCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero__partner-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5) contrast(1.2);
    opacity: 0.4;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.hero__partner-logo:hover {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.08);
}

.hero__proof {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.9s;
}

.hero__proof-item {
    font-size: 13px;
    color: rgba(26, 26, 46, 0.6);
    line-height: 1.4;
}

.hero__proof-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.hero__visual {
    position: relative;
    height: 680px;
    width: 115%;
    margin-left: -8%;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ============================
   REUSABLE HOMEPAGE ANIMATIONS
   ============================ */

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes numberPop {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-20deg);
    }
    60% {
        transform: scale(1.15) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes subtleFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero__visual::before {
    content: "";
    position: absolute;
    top: 15%;
    right: -8%;
    width: 580px;
    height: 480px;
    background: linear-gradient(
        135deg,
        rgba(255, 212, 199, 0.28) 0%,
        rgba(232, 234, 255, 0.32) 100%
    );
    border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
    filter: blur(40px);
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
    }

    33% {
        transform: translate(15px, -20px) rotate(3deg);
        border-radius: 52% 48% 50% 50% / 48% 52% 48% 52%;
    }

    66% {
        transform: translate(-10px, 15px) rotate(-2deg);
        border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%;
    }
}

.hero__visual-main {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 90%;
    height: 620px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    z-index: 1;
}

.hero__visual-main:hover {
    transform: translateY(-50%) translateX(10px) scale(1.02);
}

.hero__visual-main img,
.hero__visual-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__income-pill {
    position: absolute;
    top: 80px;
    left: -40px;
    background: white;
    padding: 14px 28px;
    border-radius: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    font-weight: 700;
    color: #1a1a2e;
    font-size: 16px;
    white-space: nowrap;
    z-index: 2;
    animation: pillFloat 3s ease-in-out infinite,
        fadeInScale 0.4s ease-out forwards;
    animation-delay: 3s, 0.7s;
    transition: all 0.3s ease;
    opacity: 0;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pillFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero__income-pill:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.hero__income-amount {
    color: #ff6b6b;
    font-size: 20px;
}

.hero__visual-card {
    position: absolute;
    bottom: 100px;
    right: 60%;
    width: 220px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    z-index: 3;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideInRight 0.4s ease-out forwards;
    animation-delay: 0.9s;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__visual-card:hover {
    transform: translateY(-5px) rotate(-2deg);
}

.hero__visual-card img,
.hero__visual-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__divider {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 6;
}

.hero__divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
}

.hero__divider-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(26, 26, 46, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero__steps {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    z-index: 5;
}

.hero__step {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero__step:nth-child(1) {
    animation-delay: 1s;
}

.hero__step:nth-child(2) {
    animation-delay: 1.15s;
}

.hero__step:nth-child(3) {
    animation-delay: 1.3s;
}

.hero__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.2);
}

.hero__step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 15px;
    margin: 0 auto 12px;
}

.hero__step-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    color: #ff6b6b;
}

.hero__step-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.hero__step-text {
    font-size: 13px;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0 120px;
        overflow-x: hidden;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px 100px;
        min-height: auto;
    }

    .hero__content {
        padding-right: 0;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        font-size: 17px;
        max-width: 100%;
        padding-right: 20px;
    }

    .hero__visual {
        width: 100%;
        margin-left: 0;
        height: 500px;
    }

    .hero__visual-main {
        width: 100%;
        right: 0;
    }

    .hero__visual::before {
        right: 0;
        width: 400px;
        height: 350px;
    }

    .hero__income-pill {
        left: 20px;
        top: 40px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero__visual-card {
        width: 180px;
        height: 140px;
        bottom: 60px;
        right: 60%;
    }

    .hero__steps {
        bottom: -100px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero__proof {
        flex-wrap: wrap;
    }

    .hero__partners-logos {
        gap: 30px;
    }

    .hero__partner-logo {
        height: 28px;
        max-width: 100px;
    }
}

/* ============================================ */
/* MOBILE RESPONSIVE (PHONES - PORTRAIT & LANDSCAPE) */
/* ============================================ */
@media (max-width: 767px) {
    .hero {
        padding: 40px 0 60px;
        overflow-x: hidden;
        min-height: auto;
        margin-top: 0;
    }

    .hero__container {
        padding: 0 20px;
        gap: 32px;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .hero__content {
        order: 1;
        padding: 0;
    }

    .hero__trust {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
        max-width: fit-content;
    }

    .hero__title {
        font-size: 36px !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.8px !important;
        line-height: 1.15 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .hero__title-word {
        display: inline;
    }

    /* Disable fancy animations on mobile for smoother experience */
    .hero__title-word--1::after,
    .hero__title-word--2::after {
        display: none;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
        max-width: 100%;
        color: rgba(26, 26, 46, 0.8);
    }

    .hero__cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero__cta {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        justify-content: center;
        padding: 16px 24px !important;
        font-size: 16px !important;
        white-space: nowrap !important;
        box-sizing: border-box;
        display: flex !important;
        min-height: 52px;
    }

    .hero__cta::before {
        font-size: 14px;
        flex-shrink: 0;
    }

    .hero__note {
        padding: 14px 16px;
        font-size: 13px;
        line-height: 1.5;
        max-width: 100%;
        box-sizing: border-box;
        margin: 24px 0 0 0;
        background: rgba(16, 185, 129, 0.05);
        border-radius: 12px;
    }

    .hero__note-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
        flex-shrink: 0;
    }

    .hero__note span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero__visual {
        order: 2;
        height: 450px;
        width: 100%;
        margin: 0;
        position: relative;
    }

    .hero__visual::before {
        width: 250px;
        height: 200px;
        right: -10%;
        top: 25%;
    }

    .hero__visual-main {
        height: 450px;
        width: 100%;
        right: 0;
        border-radius: 24px;
        position: relative;
        top: 0;
        transform: none;
    }

    .hero__visual-main:hover {
        transform: scale(1.01);
    }

    .hero__visual-card {
        width: 150px;
        height: 120px;
        bottom: 20px;
        right: auto;
        left: 10px;
        border-radius: 16px;
        border: 3px solid white;
    }

    .hero__income-pill {
        left: 10px;
        top: 20px;
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 30px;
    }

    .hero__income-amount {
        font-size: 18px;
    }

    .hero__partners {
        margin-top: 28px;
        padding-top: 28px;
    }

    .hero__partners-label {
        font-size: 10px;
        margin-bottom: 14px;
    }

    .hero__partners-logos {
        gap: 28px;
    }

    .hero__partner-logo {
        height: 26px;
        max-width: 90px;
    }

    .hero__proof {
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
        padding-top: 28px;
    }

    .hero__proof-item {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero__proof-value {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .hero__steps {
        display: none;
    }
}

/* ============================================ */
/* SMALL PHONES (320px - 480px) */
/* ============================================ */
@media (max-width: 480px) {
    .hero {
        padding: 30px 0 50px;
    }

    .hero__container {
        padding: 0 16px;
        gap: 28px;
    }

    .hero__title {
        font-size: 32px !important;
        letter-spacing: -0.6px !important;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .hero__cta {
        padding: 14px 20px !important;
        font-size: 15px !important;
        min-height: 50px;
    }

    .hero__visual {
        height: 380px;
    }

    .hero__visual-main {
        height: 380px;
    }

    .hero__visual-card {
        display: none;
    }

    .hero__income-pill {
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero__income-amount {
        font-size: 16px;
    }

    .hero__partner-logo {
        height: 22px;
        max-width: 75px;
    }
}

/* ============================================ */
/* LARGE MOBILE / SMALL TABLET (481px - 767px) */
/* ============================================ */
@media (min-width: 481px) and (max-width: 767px) {
    .hero__title {
        font-size: 42px !important;
        letter-spacing: -1px !important;
    }

    .hero__subtitle {
        font-size: 17px;
        max-width: 100%;
        padding-right: 0;
    }

    .hero__cta {
        font-size: 16px !important;
    }

    .hero__visual {
        height: 420px;
    }

    .hero__visual-main {
        height: 420px;
    }
}

/* ============================================ */
/* TABLET - PORTRAIT (768px - 991px) */
/* ============================================ */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero__container {
        padding: 0 40px;
        gap: 50px;
    }

    .hero__title {
        font-size: 52px;
        letter-spacing: -1.2px;
    }

    .hero__subtitle {
        font-size: 18px;
        max-width: 100%;
        padding-right: 20px;
    }

    .hero__cta-group {
        gap: 14px;
    }

    .hero__cta {
        padding: 16px 32px;
        font-size: 17px;
    }

    .hero__visual {
        height: 520px;
    }

    .hero__visual-main {
        height: 520px;
    }

    .hero__visual-card {
        width: 200px;
        height: 150px;
    }
}

/* ============================================ */
/* DESKTOP - SMALL (992px - 1199px) */
/* ============================================ */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero__container {
        padding: 0 40px;
    }

    .hero__title {
        font-size: 56px;
    }

    .hero__subtitle {
        font-size: 18px;
        max-width: 90%;
    }
}

/* ============================================ */
/* DESKTOP - LARGE (1200px+) */
/* ============================================ */
@media (min-width: 1200px) {
    .hero__subtitle {
        max-width: 85%;
    }
}

/* NEW LOKACIA HERO  */

.hero-fullscreen {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-fullscreen__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-fullscreen__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-fullscreen__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 50px;
    text-align: center;
}

.hero-fullscreen__title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.hero-fullscreen__title-word {
    display: inline-block;
    opacity: 0;
    position: relative;
}

/* Word 1: Odfoť - Camera Recording Effect */
.hero-fullscreen__title-word--1 {
    animation: wordFadeInWhite 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        forwards;
    animation-delay: 0.3s;
    position: relative;
}

@keyframes wordFadeInWhite {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fullscreen__title-word--1::after {
    content: "";
    position: absolute;
    top: -6px;
    right: -10px;
    width: 10px;
    height: 10px;
    background: #ff3b3b;
    border-radius: 50%;
    opacity: 0;
    animation: recordingDotWhite 1.2s ease-in-out forwards;
    animation-delay: 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7), 0 0 8px rgba(255, 59, 59, 0.6);
}

@keyframes recordingDotWhite {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    5% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    15% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    25% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    35% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    45% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    55% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    65% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    85% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Word 2: Nahraj - Upload Effect with Icon */
.hero-fullscreen__title-word--2 {
    animation: uploadSyncWhite 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        forwards;
    animation-delay: 0.6s;
}

.hero-fullscreen__title-word--2::after {
    content: "↑";
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%) translateY(0);
    font-size: 32px;
    color: #ff6b6b;
    opacity: 0;
    animation: uploadIconWhite 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        forwards;
    animation-delay: 0.6s;
    font-weight: 900;
}

@keyframes uploadSyncWhite {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uploadIconWhite {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scaleY(1.3);
    }

    40% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }

    65% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-15px) scaleY(0.7);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scaleY(0.4);
    }
}

/* Word 3: Zarábaj - Magnetic Snap Effect */
.hero-fullscreen__title-word--3 {
    animation: magneticSnapWhite 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.9s;
}

@keyframes magneticSnapWhite {
    0% {
        opacity: 0;
        transform: scale(1.2) translateX(-15px);
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        transform: scale(0.96) translateX(2px);
        filter: blur(0);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }

    80% {
        transform: scale(1.02) translateX(-1px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: blur(0);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
}

.hero-fullscreen__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 auto 32px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-fullscreen__cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.hero-fullscreen__cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    border: none;
    cursor: pointer;
}

.hero-fullscreen__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.6);
    color: white;
}

.hero-fullscreen__cta--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-fullscreen__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 991px) {
    .hero-fullscreen__content {
        padding: 0 40px 60px;
    }

    .hero-fullscreen__title {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .hero-fullscreen__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-fullscreen__content {
        padding: 0 24px 40px;
    }

    .hero-fullscreen__title {
        font-size: 36px;
    }

    .hero-fullscreen__subtitle {
        font-size: 16px;
    }

    .hero-fullscreen__cta {
        width: 100%;
        justify-content: center;
    }

    .hero-fullscreen__cta-group {
        flex-direction: column;
    }
}

/* ============================================ */
/* COMPREHENSIVE MOBILE FIX - PREVENT HORIZONTAL SCROLL */
/* ============================================ */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on entire page */
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
    }

    body * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Fix hero section specifically */
    .hero,
    .hero * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero__container,
    .hero__content,
    .hero__visual {
        max-width: 100% !important;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .maxw1600 {
        max-width: 100% !important;
        width: 100% !important;
    }

    .wrapper {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Force all buttons to fit */
    button,
    .btn,
    a.hero__cta {
        max-width: 100% !important;
        word-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
    }

    /* Fix all text elements */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    /* Fix container fluid */
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Fix footer sections */
    .footer_one {
        padding: 40px 0 !important;
        overflow-x: hidden !important;
    }

    .footer_one .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer_one .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer_one [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 30px;
    }

    .footer_middle_area {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }

    .footer_logo_widget img {
        max-width: 150px !important;
    }

    /* Fix "How it works" section */
    .simple-steps-section {
        padding: 60px 0 !important;
        overflow-x: hidden !important;
    }

    .simple-steps-container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }

    .simple-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .simple-step-card {
        padding: 30px 20px !important;
    }

    .simple-steps-title {
        font-size: 32px !important;
    }

    .simple-step-title {
        font-size: 20px !important;
    }

    /* ============================================ */
    /* MOBILE HEADER FIX */
    /* ============================================ */
    /* Force header to show on mobile */
    header.header-nav {
        display: block !important;
        position: relative !important;
        z-index: 999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
    }

    header.header-nav.main-menu {
        display: block !important;
    }

    /* Mobile menu toggle button */
    .menu-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px !important;
        background: #ffffff !important;
        width: 100%;
    }

    .menu-toggle img {
        max-height: 40px !important;
        width: auto !important;
    }

    .menu-toggle #menu-btn {
        display: block !important;
        background: #ff6b6b !important;
        border: none !important;
        padding: 10px !important;
        border-radius: 6px !important;
        cursor: pointer;
    }

    .menu-toggle #menu-btn .icon-bar {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        background: #ffffff !important;
        margin: 4px 0 !important;
        border-radius: 2px !important;
    }

    /* Desktop logo hidden on mobile */
    .navbar_brand.dn-smd {
        display: none !important;
    }

    /* Mobile menu when opened */
    .ace-responsive-menu {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ace-responsive-menu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .ace-responsive-menu li a {
        padding: 15px 20px !important;
        display: block !important;
        color: #ffffff !important;
        font-size: 15px !important;
    }

    /* Fix list inline items for mobile */
    .list-inline-item {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .list-inline-item a {
        justify-content: flex-start !important;
        width: 100% !important;
    }

    /* "Pridať ponuku" button on mobile */
    .add_listing a {
        background: #ff6b6b !important;
        color: #ffffff !important;
        padding: 15px 20px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
}

/* ============================================
           LISTING DETAILS - CLEAN MINIMAL DESIGN
           ============================================ */

:root {
    --primary: #ff5a5f;
    --primary-dark: #e04e53;
    --text-primary: #222222;
    --text-secondary: #717171;
    --text-light: #b0b0b0;
    --border-light: #ebebeb;
    --border: #dddddd;
    --bg-light: #f7f7f7;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
           GALLERY - MINIMAL STYLE
           ============================================ */
.listing-gallery {
    margin-top: 80px;
    margin-bottom: 24px;
}

.gallery-grid {
    display: grid;
    gap: 8px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

/* Single image - full width */
.gallery-grid[data-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.gallery-grid[data-count="1"] .gallery-main {
    grid-row: 1;
    grid-column: 1;
}

.gallery-grid[data-count="1"] .gallery-thumbs {
    display: none;
}

/* Two images - side by side */
.gallery-grid[data-count="2"] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.gallery-grid[data-count="2"] .gallery-main {
    grid-row: 1;
    grid-column: 1;
}

.gallery-grid[data-count="2"] .gallery-thumbs {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

/* Three images - 2:1 ratio layout */
.gallery-grid[data-count="3"] {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.gallery-grid[data-count="3"] .gallery-main {
    grid-row: 1 / 3;
    grid-column: 1;
}

.gallery-grid[data-count="3"] .gallery-thumbs {
    grid-column: 2;
    grid-row: 1 / 3;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

/* Four images - main left, 3 stacked on right */
.gallery-grid[data-count="4"] {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.gallery-grid[data-count="4"] .gallery-main {
    grid-row: 1 / 4;
    grid-column: 1;
}

.gallery-grid[data-count="4"] .gallery-thumbs {
    grid-column: 2;
    grid-row: 1 / 4;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

/* Five or more images - full grid with overlay */
.gallery-grid[data-count="5"],
.gallery-grid[data-count="more"] {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.gallery-grid[data-count="5"] .gallery-main,
.gallery-grid[data-count="more"] .gallery-main {
    grid-row: 1 / 3;
    grid-column: 1;
}

.gallery-grid[data-count="5"] .gallery-thumbs,
.gallery-grid[data-count="more"] .gallery-thumbs {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

/* Default gallery main and thumbs */
.gallery-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumbs {
    display: grid;
    gap: 8px;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.gallery-main img,
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.gallery-main:hover img,
.gallery-thumb:hover img {
    transform: scale(1.02);
}

.gallery-thumb--all-photos::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.view_all_photo_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.view_all_photo_btn .btn {
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

/* ============================================
           GALLERY MODAL - FULL SCREEN
           ============================================ */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    overflow: hidden;
}

.gallery-modal.active {
    display: block;
}

.gallery-modal__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 100%
    );
}

.gallery-modal__close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.gallery-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.gallery-modal__close svg {
    stroke: white;
}

.gallery-modal__counter {
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ============================================
           HEADER & TITLE
           ============================================ */
.listing-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.breadcrumb-custom a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.breadcrumb-custom svg {
    width: 14px;
    height: 14px;
}

.listing-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.listing-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.listing-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-primary);
    text-decoration: none;
}

.type-badge svg {
    width: 14px;
    height: 14px;
}

.quick-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s;
}

.quick-action-btn:hover {
    background: var(--bg-light);
    border-color: var(--text-primary);
}

.quick-action-btn svg {
    width: 16px;
    height: 16px;
}

/* ============================================
           TWO COLUMN LAYOUT
           ============================================ */
.listing-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    margin-bottom: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .listing-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.listing-main {
    max-width: 720px;
}

.listing-sidebar {
    position: sticky;
    align-self: flex-start;
    top: 100px;
}

.listing-sidebar .sidebar_listing_list {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    z-index: 999 !important;
}

.wrapper,
.container {
    overflow: visible !important;
}

/* ============================================
           CONTENT SECTIONS - CLEAN & MINIMAL
           ============================================ */
.content-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    margin: 0 0 12px 0;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Property Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 32px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-light);
}

.detail-value {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
}

/* Info List (simple rows) */
.info-list {
    margin: 20px 0;
}

/* Airbnb-style Info Items */
.info-items-grid {
    display: grid;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
}

.info-item__content {
    flex: 1;
    min-width: 0;
}

.info-item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.info-item__subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Legacy info-row styles for other sections */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row__label {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-primary);
}

.info-row__value {
    color: var(--text-secondary);
    font-weight: 400;
    text-align: right;
    font-size: 16px;
}

/* Tags - Clean Style */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.tag {
    display: inline-block;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.feature-item::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--text-primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
           VIDEO EMBED
           ============================================ */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 24px 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
           MAP SECTION
           ============================================ */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 1024px) {
    .listing-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    .listing-gallery {
        margin-top: 60px;
    }

    /* Mobile: All layouts become vertical stack */
    .gallery-grid[data-count="1"] {
        height: 280px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .gallery-grid[data-count="2"] {
        height: 360px;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr 80px !important;
    }

    .gallery-grid[data-count="2"] .gallery-main {
        grid-row: 1 !important;
        grid-column: 1 !important;
    }

    .gallery-grid[data-count="2"] .gallery-thumbs {
        grid-column: 1 !important;
        grid-row: 2 !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
        display: block !important;
    }

    .gallery-grid[data-count="3"],
    .gallery-grid[data-count="4"],
    .gallery-grid[data-count="5"],
    .gallery-grid[data-count="more"] {
        height: 360px;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr 80px !important;
    }

    .gallery-grid[data-count="3"] .gallery-main,
    .gallery-grid[data-count="4"] .gallery-main,
    .gallery-grid[data-count="5"] .gallery-main,
    .gallery-grid[data-count="more"] .gallery-main {
        grid-row: 1 !important;
        grid-column: 1 !important;
    }

    .gallery-grid[data-count="3"] .gallery-thumbs,
    .gallery-grid[data-count="4"] .gallery-thumbs,
    .gallery-grid[data-count="5"] .gallery-thumbs,
    .gallery-grid[data-count="more"] .gallery-thumbs {
        grid-column: 1 !important;
        grid-row: 2 !important;
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)) !important;
        grid-template-rows: 1fr !important;
        display: grid !important;
    }

    .listing-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-actions {
        width: 100%;
        flex-direction: column;
    }

    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }

    .content-section {
        padding: 24px 0;
    }

    .listing-content {
        gap: 24px;
    }
}
