        :root

		{
            --primary-color: #0891b2;
            --primary-dark: #0e7490;
            --primary-light: #22d3ee;
            --secondary-color: #1e3a5f;
            --accent-color: #f59e0b;
            --text-color: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --bg-dark: #1e293b;
            --success-color: #10b981;
            --error-color: #ef4444;
            --whatsapp-color: #25D366;
            --border-radius: 12px;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

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

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .section-subtitle {
            font-size: 1.1rem;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }

        .btn-accent {
            background: var(--accent-color);
            color: white;
        }

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

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Loading state pre tlačidlá */
        .btn.loading {
            position: relative;
            color: transparent;
            pointer-events: none;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        /* ========================================
           OPRAVA MOBILNÉHO ZOBRAZENIA - OVERFLOW
        ======================================== */
        
        /* Základná oprava pre celú stránku */
        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }
        
        body {
            position: relative;
        }
        
        /* Oprava pre všetky kontajnery */
		
		
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }
        
        /* Oprava pre sekcie */
        .section {
            overflow-x: hidden;
            max-width: 100vw;
        }
        
        /* ========================================
           OPRAVA TRIAL TRIP SEKCIE NA MOBILE
        ======================================== */
        @media (max-width: 768px) {
            /* Hlavný grid */
            .trial-main-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            /* Pricing card */
            .trial-pricing-card {
                padding: 20px;
            }
            
            .pricing-amount {
                font-size: 2.5rem;
            }
            
            /* Includes card */
            .trial-includes-card {
                padding: 20px;
            }
            
            .trial-includes-list li {
                flex-direction: column;
                gap: 10px;
            }
            
            .include-icon {
                width: 35px;
                height: 35px;
            }
            
            /* Flights accordion */
            .trial-flights-accordion {
                margin: 0 -15px;
                border-radius: 0;
            }
            
            .flights-toggle {
                padding: 15px;
                font-size: 0.9rem;
            }
            
            .flights-content {
                padding: 0 15px;
            }
            
            .flights-content.active {
                padding: 0 15px 15px;
            }
            
            .flights-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            /* Guarantees */
            .guarantees-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .guarantee-card {
                padding: 20px;
            }
            
            /* Dates & CTA */
            .trial-dates-cta {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .trial-dates {
                padding: 20px;
            }
            
            .trial-cta-box {
                padding: 20px;
            }
            
            .cta-price-main {
                font-size: 2rem;
            }
            
            /* Testimonial */
            .trial-testimonial {
                padding: 20px;
            }
            
            .trial-testimonial blockquote {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            /* FAQ */
            .trial-faq {
                padding: 20px;
            }
            
            .trial-faq-question {
                padding: 15px;
                font-size: 0.9rem;
            }
            
            .trial-faq-question span:first-child {
                padding-right: 30px;
            }
            
            .trial-faq-answer p,
            .trial-faq-answer ul,
            .trial-faq-answer ol {
                padding: 0 15px;
                font-size: 0.9rem;
            }
            
            .trial-faq-answer ul,
            .trial-faq-answer ol {
                padding-left: 30px;
            }
        }
        
        /* ========================================
           OPRAVA REMOTE PURCHASE SEKCIE NA MOBILE
        ======================================== */
        @media (max-width: 768px) {
            .remote-content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .remote-for-whom,
            .remote-how-it-works {
                padding: 20px;
            }
            
            .remote-poa-accordion {
                margin: 0;
            }
            
            .poa-toggle {
                padding: 15px;
                font-size: 0.9rem;
            }
            
            .poa-content {
                padding: 0 15px;
            }
            
            .poa-content.active {
                padding: 0 15px 15px;
            }
            
            .remote-bottom-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .remote-guarantees,
            .remote-price-cta {
                padding: 20px;
            }
            
            .remote-price-main strong {
                font-size: 2.5rem;
            }
            
            .remote-trial-link {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* ========================================
           OPRAVA TRIP MODAL NA MOBILE
        ======================================== */
        @media (max-width: 600px) {
            .modal-content-trip {
                padding: 20px 15px;
                margin: 10px;
                max-height: calc(100vh - 20px);
                max-width: calc(100vw - 20px);
            }
            
            .trip-modal-header h3 {
                font-size: 1.3rem;
            }
            
            .trip-form-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .trip-price-summary {
                padding: 15px;
            }
            
            .trip-price-note {
                font-size: 0.8rem;
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }
            
            .trip-submit-btn {
                padding: 14px 20px;
                font-size: 0.95rem;
            }
            
            .trip-form-note {
                font-size: 0.8rem;
            }
            
            /* Success state */
            .success-details {
                padding: 15px;
            }
            
            .success-contact .btn {
                width: 100%;
            }
        }
        
        /* ========================================
           OPRAVA VŠEOBECNÝCH ELEMENTOV NA MOBILE
        ======================================== */
        @media (max-width: 768px) {
            /* Header */
            #calculator:not(.pdf-render) .header .container {
                padding: 0 15px;
            }
            
            /* Buttons */
            #calculator:not(.pdf-render) .btn-lg {
                padding: 14px 24px;
                font-size: 0.95rem;
            }
            
            /* Grids - všeobecne */
            .features-grid,
            .properties-grid,
            .why-us-grid,
            .testimonials-grid,
            .follow-us-grid {
                grid-template-columns: 1fr;
            }
            
            /* Cards */
            .feature-card,
            .property-card,
            .why-us-card,
            .testimonial-card {
                padding: 20px;
            }
            
            /* Kalkulačka */
            #calculator:not(.pdf-render) .calculator-grid {
                grid-template-columns: 1fr;
            }
            
            #calculator:not(.pdf-render) .calc-results-grid {
                grid-template-columns: 1fr;
            }
            
            /* Contact */
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            /* Footer */
            body > footer .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            body > footer .footer-social {
                justify-content: center;
            }
            
            body > footer .footer-column ul {
                align-items: center;
            }
            
            body > footer .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
            
            /* Tables - ak máte nejaké */
            table {
                display: block;
                overflow-x: auto;
                max-width: 100%;
            }
            
            /* Images */
            img {
                max-width: 100%;
                height: auto;
            }
            
            /* Pre-formatted text */
            pre, code {
                max-width: 100%;
                overflow-x: auto;
            }
        }
        
        /* ========================================
           OPRAVA PRE VEĽMI MALÉ OBRAZOVKY
        ======================================== */
        @media (max-width: 380px) {
            .container {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .pricing-amount {
                font-size: 2rem;
            }
            
            .cta-price-main {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .trial-trust-badges,
            .cta-trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
            
            .guarantee-badge {
                font-size: 0.8rem;
                padding: 4px 12px;
            }
        }

        /* ========================================
           HEADER / NAVIGATION
        ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            padding: 15px 0;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            color: var(--text-color);
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
            padding: 5px;
            z-index: 1001;
        }
		
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            max-width: 85%;
            height: 100vh;
            height: 100dvh;
            background: white;
            box-shadow: -5px 0 20px rgba(0,0,0,0.15);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu nav {
            flex: 1;
            overflow-y: auto;
            padding: 80px 25px 20px;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu nav a {
            display: block;
            padding: 15px 0;
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            border-bottom: 1px solid #eee;
            transition: color 0.3s ease;
        }

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

        .mobile-menu-social {
            flex-shrink: 0;
            padding: 20px 25px;
            padding-bottom: calc(30px + env(safe-area-inset-bottom));
            background: var(--bg-light);
            border-top: 1px solid #e5e7eb;
        }

        .mobile-menu-social h4 {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0 0 15px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-menu-social .social-icons {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            justify-items: center;
        }

        .mobile-menu-social .social-icons a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border: none;
            padding: 0;
            transition: transform 0.3s ease;
        }

        .mobile-menu-social .social-icons a:hover {
            transform: scale(1.1);
        }

        .mobile-menu-social .social-icons a i {
            font-size: 1rem;
        }

        .mobile-menu-social .social-icons a.social-fb { background: #1877f2; }
        .mobile-menu-social .social-icons a.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .mobile-menu-social .social-icons a.social-yt { background: #ff0000; }
        .mobile-menu-social .social-icons a.social-tt { background: #000000; }
        .mobile-menu-social .social-icons a.social-pin { background: #e60023; }
        .mobile-menu-social .social-icons a.social-link { background: #43e660; }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text-light);
            cursor: pointer;
            z-index: 10;
        }

        /* ========================================
           FLOATING SOCIAL SIDEBAR
        ======================================== */
        .social-sidebar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 998;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .social-sidebar a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-sidebar a:hover {
            width: 55px;
        }

        .social-sidebar a i {
            font-size: 1.2rem;
        }

        .social-fb { background: #1877F2; }
        .social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-yt { background: #FF0000; }
        .social-tt { background: #000000; }
        .social-pin { background: #E60023; }
        .social-link { background: #43E660; }

        /* ========================================
           FLOATING BUTTONS (WhatsApp + Back to Top)
        ======================================== */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .back-to-top {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            cursor: pointer;
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            background: var(--whatsapp-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn i {
            font-size: 2rem;
            color: white;
        }

        /* ========================================
           SECTION 1: HERO
        ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?w=1920') center/cover;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 2rem;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.95rem;
        }

        .hero-feature i {
            font-size: 1.1rem;
        }

        .hero-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 2rem;
        }

        .hero-social a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .hero-social a:hover {
            background: rgba(255,255,255,0.4);
            transform: translateY(-3px);
        }

        .hero-social a i {
            font-size: 1.2rem;
            color: white;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 3rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator a {
            color: white;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* ========================================
           CAROUSEL BASE STYLES
        ======================================== */
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 10px 0 20px;
            -webkit-overflow-scrolling: touch;
        }

        .carousel::-webkit-scrollbar {
            height: 8px;
        }

        .carousel::-webkit-scrollbar-track {
            background: var(--bg-light);
            border-radius: 10px;
        }

        .carousel::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .carousel-nav button {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: white;
            color: var(--primary-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-nav button:hover {
            background: var(--primary-color);
            color: white;
        }

        .carousel-nav button:focus-visible {
            outline: 3px solid var(--primary-light);
            outline-offset: 2px;
        }

        /* ========================================
           SECTION 2: PREČO ALBÁNSKO (CAROUSEL)
        ======================================== */
        .why-albania {
            background: var(--bg-light);
        }

        .feature-card {
            min-width: 280px;
            max-width: 280px;
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .why-albania .section-cta {
            text-align: center;
            margin-top: 2rem;
        }

        /* ========================================
           SECTION 3: VIDEO
        ======================================== */
        .video-section {
            background: var(--bg-white);
        }

        .video-card {
            min-width: 320px;
            max-width: 320px;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            scroll-snap-align: start;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .video-thumbnail {
            position: relative;
            height: 180px;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-play-btn {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .video-thumbnail:hover .video-play-btn {
            transform: scale(1.1);
            background: white;
        }

        .video-card-content {
            padding: 20px;
        }

        .video-card-content h3 {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .video-card-content p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .video-section .section-cta {
            text-align: center;
            margin-top: 2rem;
        }

        /* ========================================
           KALKULAČKA - HLAVNÉ ŠTÝLY
        ======================================== */
        .calculator {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .calc-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .calc-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        /* ========================================
           KALKULAČKA - HLAVNÝ GRID
        ======================================== */
        .calc-main-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;  /* Trochu väčší pravý stĺpec */
            gap: 25px;
            margin-bottom: 2rem;
            align-items: stretch;  /* PRIDAŤ - aby boli stĺpce rovnako vysoké */
        }

        /* ========================================
           KALKULAČKA - PRAVÝ STĹPEC (VÝSLEDKY + GRAF)
        ======================================== */
        .calc-right-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .calc-results {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow-md);
        }
        
        /* Graf inline (v pravom stĺpci) */
        .calc-chart-section-inline {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow-md);
            flex: 1;
            min-height: 200px;
        }
        
        .calc-chart-section-inline h4 {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .calc-chart-section-inline h4 i {
            color: var(--primary-color);
        }
        
        .calc-chart-container-small {
            position: relative;
            height: 180px;
            width: 100%;
        }
        
        .calc-chart-legend-small {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        
        .calc-chart-legend-small .legend-item {
            font-size: 0.75rem;
        }
        
        .calc-chart-legend-small .legend-item i {
            font-size: 0.5rem;
        }
        
        /* Skryť pôvodnú veľkú graf sekciu */
        .calc-chart-section {
            display: none;
        }
        
        /* ========================================
           RESPONZÍVNY DIZAJN - GRAF
        ======================================== */
        @media (max-width: 1024px) {
            #calculator:not(.pdf-render) .calc-right-column {
                gap: 15px;
            }
            
            #calculator:not(.pdf-render) .calc-chart-container-small {
                height: 160px;
            }
        }
        


        /* ========================================
           KALKULAČKA - PRAVÝ STĹPEC (VÝSLEDKY + GRAF)
        ======================================== */
        .calc-right-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* ========================================
           KALKULAČKA - GRAF INLINE
        ======================================== */
        .calc-chart-section-inline {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow-md);
            flex: 1;
            min-height: 200px;
        }
        
        .calc-chart-section-inline h4 {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .calc-chart-section-inline h4 i {
            color: var(--primary-color);
        }
        
        .calc-chart-container-small {
            position: relative;
            height: 180px;
            width: 100%;
        }
        
        .calc-chart-legend-small {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        
        .calc-chart-legend-small .legend-item {
            font-size: 0.75rem;
        }
        
        .calc-chart-legend-small .legend-item i {
            font-size: 0.5rem;
        }
        
        /* ========================================
           INFO BOX - DESKTOP (pod grafom)
        ======================================== */
        .calc-info-box-inline {
            display: flex;
            gap: 10px;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 1px solid #fcd34d;
            border-radius: var(--border-radius);
            padding: 12px 15px;
            margin-top: 15px;
        }
        
        .calc-info-box-inline i {
            color: #f59e0b;
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .calc-info-box-inline p {
            font-size: 0.8rem;
            color: #92400e;
            margin: 0;
            line-height: 1.5;
        }
        
        /* ========================================
           INFO BOX - MOBILE (v ľavom stĺpci)
        ======================================== */
        .calc-info-box-mobile {
            display: none;
        }
        
        /* ========================================
           HLAVNÝ GRID - ÚPRAVA
        ======================================== */
        .calc-main-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 25px;
            margin-bottom: 2rem;
            align-items: stretch;
        }
        
        /* ========================================
           RESPONZÍVNY DIZAJN
        ======================================== */
        @media (max-width: 1024px) {
            #calculator:not(.pdf-render) .calc-main-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            #calculator:not(.pdf-render) .calc-chart-container-small {
                height: 160px;
            }
        }
        
        @media (max-width: 768px) {
            #calculator:not(.pdf-render) .calc-main-grid {
                grid-template-columns: 1fr;
            }
            
            /* Na mobile - skryť inline graf a info box 
            .calc-chart-section-inline {
                display: none;
            }*/
            
            #calculator:not(.pdf-render) .calc-info-box-inline {
                display: none;
            }
            
            /* Na mobile - zobraziť info box v ľavom stĺpci */
            #calculator:not(.pdf-render) .calc-info-box-mobile {
                display: flex;
            }
            
            /* Na mobile - zobraziť veľký graf (ak ho máte) */
            #calculator:not(.pdf-render) .calc-chart-section {
                display: block;
            }
        }

        /* ========================================
           KALKULAČKA - VSTUPY
        ======================================== */
        .calc-inputs {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
        }

        .calc-inputs h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calc-inputs h3 i {
            color: var(--primary-color);
        }

        .calc-input-group {
            margin-bottom: 25px;
        }

        .calc-input-group:last-of-type {
            margin-bottom: 20px;
        }

        .calc-input-group label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .calc-input-value {
            background: var(--primary-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* Typ apartmánu - Buttons */
        .calc-type-buttons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .calc-type-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            padding: 15px 10px;
            background: var(--bg-light);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .calc-type-btn i {
            font-size: 1.2rem;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .calc-type-btn span {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .calc-type-btn small {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        .calc-type-btn:hover:not(.disabled) {
            border-color: var(--primary-color);
            background: white;
        }

        .calc-type-btn.active {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .calc-type-btn.active i {
            color: var(--primary-color);
        }

        .calc-type-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* Info o dostupných typoch */
        .available-types-info {
            display: none;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            padding: 10px 15px;
            background: rgba(8, 145, 178, 0.1);
            border-radius: var(--border-radius);
            font-size: 0.85rem;
            color: var(--primary-color);
        }
        
        .available-types-info i {
            font-size: 1rem;
        }

        /* Typ apartmánu - dostupný (v cenovom rozsahu) */
        .calc-type-btn.available {
            border-color: var(--primary-color);
            background: rgba(8, 145, 178, 0.08);
        }
        
        .calc-type-btn.available i {
            color: var(--primary-color);
        }
        
        .calc-type-btn.available::after {
            content: '✓';
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 0.7rem;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        /* Typ apartmánu - aktívny (vybraný) */
        .calc-type-btn.active {
            border-color: var(--success-color);
            background: rgba(16, 185, 129, 0.15);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
        }
        
        .calc-type-btn.active i {
            color: var(--success-color);
        }
        
        .calc-type-btn.active::after {
            content: '✓';
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 0.7rem;
            color: var(--success-color);
            font-weight: bold;
        }
        
        /* Typ apartmánu - nedostupný */
        .calc-type-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            border-color: transparent;
            background: var(--bg-light);
        }
        
        .calc-type-btn.disabled::after {
            display: none;
        }
        
        /* Relatívna pozícia pre ::after */
        .calc-type-btn {
            position: relative;
        }

        /* Slider */
        .calc-slider-container {
            padding: 0 5px;
        }

        .calc-slider-container input[type="range"] {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #e5e7eb;
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .calc-slider-container input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: transform 0.2s ease;
        }

        .calc-slider-container input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }

        .calc-slider-container input[type="range"]::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

        .calc-slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Info box */
        .calc-info-box {
            display: flex;
            gap: 12px;
            background: #fef3c7;
            border: 1px solid #fcd34d;
            border-radius: var(--border-radius);
            padding: 15px;
            margin-top: 20px;
        }

        .calc-info-box i {
            color: #f59e0b;
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .calc-info-box p {
            font-size: 0.85rem;
            color: #92400e;
            margin: 0;
            line-height: 1.5;
        }

        /* ========================================
           KALKULAČKA - VÝSLEDKY ZHODNOTENIA
        ======================================== */
        .calc-results {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
        }

        .calc-results h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calc-results h3 i {
            color: var(--primary-color);
        }

        .calc-results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .calc-result-card {
            background: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .calc-result-card.conservative {
            border-color: #94a3b8;
        }

        .calc-result-card.realistic {
            border-color: var(--success-color);
        }

        .calc-result-card.optimistic {
            border-color: var(--accent-color);
        }

        .calc-result-card.featured {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .result-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--success-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .result-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .calc-result-card.conservative .result-label i { color: #64748b; }
        .calc-result-card.realistic .result-label i { color: var(--success-color); }
        .calc-result-card.optimistic .result-label i { color: var(--accent-color); }

        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .result-roi {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .calc-result-card.conservative .result-roi { color: #64748b; }
        .calc-result-card.realistic .result-roi { color: var(--success-color); }
        .calc-result-card.optimistic .result-roi { color: var(--accent-color); }

        /* ========================================
           KALKULAČKA - GRAF
        ======================================== */
        .calc-chart-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }

        .calc-chart-section h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calc-chart-section h3 i {
            color: var(--primary-color);
        }

        .calc-chart-container {
            position: relative;
            height: 300px;
            width: 100%;
        }

        .calc-chart-legend {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-color);
        }

        .legend-item i {
            font-size: 0.6rem;
        }

        .legend-item.conservative i { color: #94a3b8; }
        .legend-item.realistic i { color: var(--success-color); }
        .legend-item.optimistic i { color: var(--accent-color); }
        .legend-item.eu-boost i { color: #8b5cf6; font-size: 0.8rem; }

        /* ========================================
           KALKULAČKA - PRENÁJOM
        ======================================== */
        .calc-rental-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }

        .calc-rental-section h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calc-rental-section h3 i {
            color: var(--primary-color);
        }

        .rental-subtitle {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .calc-rental-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .calc-rental-card {
            background: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 20px;
            position: relative;
            border: 2px solid transparent;
        }

        .calc-rental-card.conservative { border-color: #94a3b8; }
        .calc-rental-card.realistic { border-color: var(--success-color); }
        .calc-rental-card.optimistic { border-color: var(--accent-color); }

        .calc-rental-card.featured {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .rental-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--success-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .rental-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e5e7eb;
        }

        .rental-header span {
            font-weight: 600;
            color: var(--secondary-color);
        }

        .calc-rental-card.conservative .rental-header i { color: #64748b; }
        .calc-rental-card.realistic .rental-header i { color: var(--success-color); }
        .calc-rental-card.optimistic .rental-header i { color: var(--accent-color); }

        .rental-occupancy {
            text-align: center;
            margin-bottom: 15px;
        }

        .rental-occupancy span {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .rental-occupancy strong {
            display: block;
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-top: 5px;
        }

        .rental-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .rental-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }

        .rental-row span:first-child {
            color: var(--text-light);
        }

        .rental-row span:last-child {
            font-weight: 600;
            color: var(--secondary-color);
        }

        .rental-row.total {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #e5e7eb;
        }

        .rental-row.total span:last-child {
            font-size: 1.1rem;
        }

        .calc-rental-card.conservative .rental-row.total span:last-child { color: #64748b; }
        .calc-rental-card.realistic .rental-row.total span:last-child { color: var(--success-color); }
        .calc-rental-card.optimistic .rental-row.total span:last-child { color: var(--accent-color); }

        /* Rental info */
        .rental-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 15px;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            flex-wrap: wrap;
        }

        .rental-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-color);
        }

        .rental-info-item i {
            color: var(--primary-color);
        }

        /* ========================================
           KALKULAČKA - CELKOVÝ VÝNOS
        ======================================== */
        .calc-total-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
            border-radius: var(--border-radius);
            padding: 35px 30px;
            margin-bottom: 2rem;
            color: white;
        }

        .calc-total-section h3 {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .calc-total-section h3 i {
            color: var(--accent-color);
        }

        .total-subtitle {
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        /* GRID - VEDĽA SEBA */
        .calc-total-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: nowrap;
        }

        .total-item {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 20px 25px;
            text-align: center;
            flex: 1;
            max-width: 200px;
        }

        .total-item.grand-total {
            background: rgba(255,255,255,0.2);
            border: 2px solid var(--accent-color);
            flex: 1.2;
            max-width: 240px;
        }

        .total-icon {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .total-item.appreciation .total-icon { color: #60a5fa; }
        .total-item.rental .total-icon { color: #34d399; }
        .total-item.grand-total .total-icon { color: var(--accent-color); }

        .total-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 6px;
        }

        .total-value {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .total-item.grand-total .total-value {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .total-roi {
            margin-top: 6px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--accent-color);
            background: rgba(245,158,11,0.2);
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-block;
        }

        .total-plus, .total-equals {
            font-size: 1.5rem;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            flex-shrink: 0;
        }

        /* ========================================
           CELKOVÝ VÝNOS - RESPONZÍVNY DIZAJN
        ======================================== */
        @media (max-width: 900px) {
            .calc-total-grid {
                gap: 10px;
            }
            
            .total-item {
                padding: 15px;
            }
            
            .total-value {
                font-size: 1.1rem;
            }
            
            .total-item.grand-total .total-value {
                font-size: 1.3rem;
            }
            
            .total-plus, .total-equals {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .calc-total-section {
                padding: 25px 20px;
            }
            
            .calc-total-grid {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .total-item {
                flex: 1 1 calc(50% - 20px);
                max-width: none;
                min-width: 120px;
            }
            
            .total-item.grand-total {
                flex: 1 1 100%;
                max-width: none;
            }
            
            .total-plus, .total-equals {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .calc-total-grid {
                flex-direction: column;
                align-items: stretch;
            }
            
            .total-item {
                flex: none;
                width: 100%;
            }
        }
		
        /* ========================================
           KALKULAČKA - POROVNANIE
        ======================================== */
        .calc-comparison-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }

        .calc-comparison-section h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .calc-comparison-section h3 i {
            color: var(--primary-color);
        }

        .comparison-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .calc-comparison-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .comparison-item {
            background: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .comparison-item.featured {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-color: var(--success-color);
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
        }

        .comparison-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .comparison-item.albania .comparison-icon { font-size: 2rem; }
        .comparison-item.deposit .comparison-icon i { color: #64748b; }
        .comparison-item.sp500 .comparison-icon i { color: #3b82f6; }
        .comparison-item.gold .comparison-icon i { color: #f59e0b; }

        .comparison-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .comparison-value {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .comparison-item.albania .comparison-value { color: var(--success-color); }
        .comparison-item.deposit .comparison-value { color: #64748b; }
        .comparison-item.sp500 .comparison-value { color: #3b82f6; }
        .comparison-item.gold .comparison-value { color: #f59e0b; }

        .comparison-desc {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        /* ========================================
           KALKULAČKA - DISCLAIMER
        ======================================== */
        .calc-disclaimer {
            display: flex;
            gap: 12px;
            background: #f1f5f9;
            border-radius: var(--border-radius);
            padding: 15px 20px;
            margin-bottom: 2rem;
        }

        .calc-disclaimer i {
            color: #64748b;
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .calc-disclaimer p {
            font-size: 0.8rem;
            color: #64748b;
            margin: 0;
            line-height: 1.6;
        }

        /* ========================================
           KALKULAČKA - FORMULÁR
        ======================================== */
        .calc-form-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            text-align: center;
        }

        .calc-form-section h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .calc-form-section h3 i {
            color: var(--primary-color);
        }

        .calc-form-section > p {
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .calc-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .calc-form-error {
            display: none;
            align-items: center;
            gap: 10px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid var(--error-color);
            border-radius: var(--border-radius);
            padding: 12px 15px;
            margin-bottom: 20px;
            color: var(--error-color);
            text-align: left;
        }

        .calc-form-error.show {
            display: flex;
        }

        .calc-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
            text-align: left;
        }

        .calc-form .form-group label {
            display: block;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 6px;
            font-size: 0.9rem;
        }

        .calc-form .form-group input,
        .calc-form .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e5e7eb;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .calc-form .form-group input:focus,
        .calc-form .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .calc-form-gdpr {
            margin-bottom: 20px;
            text-align: left;
        }

        .calc-form-gdpr label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 0.85rem;
            color: var(--text-color);
        }

        .calc-form-gdpr input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .calc-form-gdpr a {
            color: var(--primary-color);
        }

        .calc-form #calc-submit {
            width: 100%;
        }

        /* Success message */
        .calc-success {
            display: none;
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
        }

        .calc-success.show {
            display: block;
        }

        .calc-success .success-icon {
            font-size: 4rem;
            color: var(--success-color);
            margin-bottom: 20px;
        }

        .calc-success h4 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .calc-success p {
            color: var(--text-light);
        }

        /* ========================================
           KALKULAČKA - RESPONZÍVNY DIZAJN
        ======================================== */
        @media (max-width: 1024px) {
            #calculator:not(.pdf-render) .calc-main-grid {
                grid-template-columns: 1fr;
            }
            
            #calculator:not(.pdf-render) .calc-right-column {
                display: contents; /* Na menších obrazovkách rozbiť stĺpec */
            }
        }

            .calc-total-grid {
                flex-direction: column;
            }

            .total-plus, .total-equals {
                display: none;
            }

            .total-item {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            #calculator:not(.pdf-render) .calc-type-buttons {
                grid-template-columns: repeat(2, 1fr);
            }

            #calculator:not(.pdf-render) .calc-results-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #calculator:not(.pdf-render) .calc-result-card.featured {
                transform: none;
                order: -1;
            }

            #calculator:not(.pdf-render) .calc-rental-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #calculator:not(.pdf-render) .calc-rental-card.featured {
                transform: none;
                order: -1;
            }

            #calculator:not(.pdf-render) .calc-comparison-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            #calculator:not(.pdf-render) .comparison-item.featured {
                transform: none;
                grid-column: span 2;
            }

           #calculator:not(.pdf-render)  .calc-chart-container {
                height: 250px;
            }

            #calculator:not(.pdf-render) .rental-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            #calculator:not(.pdf-render) .calc-form-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            #calculator:not(.pdf-render) .calc-inputs,
            #calculator:not(.pdf-render) .calc-results,
            #calculator:not(.pdf-render) .calc-chart-section,
            #calculator:not(.pdf-render) .calc-rental-section,
            #calculator:not(.pdf-render) .calc-comparison-section,
            #calculator:not(.pdf-render) .calc-form-section {
                padding: 20px 15px;
            }

            #calculator:not(.pdf-render) .calc-total-section {
                padding: 30px 15px;
            }

            #calculator:not(.pdf-render) .calc-type-buttons {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            #calculator:not(.pdf-render) .calc-type-btn {
                padding: 12px 8px;
            }

            .calc-type-btn span {
                font-size: 0.85rem;
            }

            #calculator:not(.pdf-render) .result-value {
                font-size: 1.3rem;
            }

            #calculator:not(.pdf-render) .calc-comparison-grid {
                grid-template-columns: 1fr;
            }

            #calculator:not(.pdf-render) .comparison-item.featured {
                grid-column: span 1;
            }

            #calculator:not(.pdf-render) .calc-chart-legend {
                gap: 15px;
            }

            #calculator:not(.pdf-render) .legend-item {
                font-size: 0.75rem;
            }
        }

        /* ========================================
           KALKULAČKA - PRENÁJOM TOGGLE
        ======================================== */
        .calc-rental-toggle {
            margin-bottom: 20px;
            margin-top: 5px;
        }
        
        .rental-toggle-label {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px 20px;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .rental-toggle-label:hover {
            background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
        }
        
        /* Skryť pôvodný checkbox */
        .rental-toggle-label input[type="checkbox"] {
            display: none;
        }
        
        /* Custom toggle switch */
        .toggle-switch {
            position: relative;
            width: 50px;
            height: 28px;
            background: #d1d5db;
            border-radius: 14px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            margin-top: 2px;
        }
        
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        /* Toggle zapnutý */
        .rental-toggle-label input[type="checkbox"]:checked + .toggle-switch {
            background: var(--success-color);
        }
        
        .rental-toggle-label input[type="checkbox"]:checked + .toggle-switch::after {
            left: 25px;
        }
        
        /* Text vedľa toggle */
        .toggle-text {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        
        .toggle-text strong {
            font-size: 0.95rem;
            color: var(--secondary-color);
        }
        
        .toggle-text small {
            font-size: 0.8rem;
            color: #92400e;
        }
        
        /* Keď je toggle aktívny - zmeniť štýl */
        .rental-toggle-label:has(input:checked) {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-color: var(--success-color);
        }
        
        .rental-toggle-label:has(input:checked) .toggle-text small {
            color: #065f46;
        }
        
        /* Fallback pre staršie prehliadače */
        .rental-toggle-label.active {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-color: var(--success-color);
        }
        
        /* ========================================
           KALKULAČKA - SKRYTIE PRENÁJOM SEKCIE
        ======================================== */
        .calc-rental-section.hidden {
            display: none;
        }
        
        .calc-total-section .rental-included {
            display: flex;
        }
        
        .calc-total-section .rental-excluded {
            display: none;
        }
        
        .calc-total-section.no-rental .rental-included {
            display: none;
        }
        
        .calc-total-section.no-rental .rental-excluded {
            display: flex;
        }
        
        /* Responzívny dizajn */
        @media (max-width: 480px) {
            #calculator:not(.pdf-render) .rental-toggle-label {
                padding: 12px 15px;
                gap: 12px;
            }
            
            #calculator:not(.pdf-render) .toggle-switch {
                width: 44px;
                height: 24px;
            }
            
            #calculator:not(.pdf-render) .toggle-switch::after {
                width: 18px;
                height: 18px;
            }
            
            #calculator:not(.pdf-render) .rental-toggle-label input[type="checkbox"]:checked + .toggle-switch::after {
                left: 23px;
            }
            
           #calculator:not(.pdf-render) .toggle-text strong {
                font-size: 0.9rem;
            }
            
            #calculator:not(.pdf-render) .toggle-text small {
                font-size: 0.75rem;
            }
        }

    .calc-chart-section {
        display: none;
    }

    @media (max-width: 768px) {
        #calculator:not(.pdf-render) .calc-chart-section {
            display: block;
        }
    }
        /* ========================================
           SECTION 5: PONUKY APARTMÁNOV
        ======================================== */
        .properties {
            background: var(--bg-light);
        }

        .property-card {
            min-width: 280px;
            max-width: 280px;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .property-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .property-card:hover .property-image img {
            transform: scale(1.05);
        }

        .property-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--accent-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .property-badge.badge-ready {
            background: var(--success-color);
        }

        .property-badge.badge-land {
            background: #8b5cf6;
        }

        .property-badge.badge-premium {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .property-badge-info {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            cursor: help;
        }

        .property-content {
            padding: 20px;
        }

        .property-type {
            font-size: 0.85rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .property-location {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-location i {
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .property-details {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .property-details span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-details i {
            color: var(--primary-color);
        }

        .property-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .property-price small {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .property-card .btn {
            width: 100%;
            margin-top: 15px;
            padding: 12px 20px;
            font-size: 0.9rem;
        }

        .properties-footer {
            text-align: center;
            margin-top: 2rem;
        }

        .properties-tip {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .properties-tip i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .properties-tip a {
            color: var(--primary-color);
            font-weight: 600;
        }

        .properties-tip a:hover {
            text-decoration: underline;
        }

        /* ========================================
           SECTION 6: PREČO MY
        ======================================== */
        .why-us {
            background: var(--bg-white);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .why-us-card {
            background: var(--bg-light);
            padding: 30px;
            border-radius: var(--border-radius);
            display: flex;
            gap: 20px;
            transition: var(--transition);
        }

        .why-us-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .why-us-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-us-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .why-us-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .why-us-card p {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        /* ========================================
           SECTION 7: 360° FOTO
        ======================================== */
        .virtual-tour {
            background: var(--bg-light);
        }

        .tour-card {
            min-width: 320px;
            max-width: 320px;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            scroll-snap-align: start;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .tour-thumbnail {
            position: relative;
            height: 200px;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            overflow: hidden;
        }

        .tour-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .tour-thumbnail img {
            transform: scale(1.05);
        }

        .tour-360-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tour-view-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: white;
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .tour-thumbnail:hover .tour-view-btn {
            background: var(--primary-color);
            color: white;
        }

        .tour-card-content {
            padding: 20px;
        }

        .tour-card-content h3 {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .tour-card-content p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .virtual-tour .section-cta {
            text-align: center;
            margin-top: 2rem;
        }

        /* ========================================
           SECTION 8: O NÁS - ÚPRAVA PRE 3 KARTY
        ======================================== */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .about-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            text-align: center;
        }
        
        .about-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--primary-light);
        }
        
        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content blockquote {
            font-size: 1rem;
            font-style: italic;
            color: var(--text-color);
            line-height: 1.7;
            margin: 0 0 15px;
        }
        
        .about-content cite {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-color);
            font-style: normal;
        }
        
        .about-footer {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }
        
        .about-footer p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }
        
        /* Responzívny dizajn */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .about-card {
                padding: 25px 20px;
            }
            
            .about-photo {
                width: 100px;
                height: 100px;
            }
            
            .about-content blockquote {
                font-size: 0.95rem;
            }
        }


        /* ========================================
           SECTION 9: ALBÁNSKO NA SKÚŠKU (PREROBENÁ)
        ======================================== */
        .trial-trip {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
        }

        .trial-trip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?w=1920') center/cover;
            opacity: 0.1;
        }

        .trial-trip .container {
            position: relative;
            z-index: 1;
        }

        .trial-trip .section-title,
        .trial-trip .section-subtitle {
            color: white;
        }

        /* Trial Header */
        .trial-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trial-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Main Grid - Pricing + Includes */
        .trial-main-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 2rem;
        }

        /* Pricing Card */
        .trial-pricing-card {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .pricing-value {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .pricing-original {
            font-size: 0.9rem;
            opacity: 0.8;
            display: block;
            margin-bottom: 10px;
        }

        .pricing-original s {
            color: #fca5a5;
        }

        .pricing-current {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .pricing-per {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .pricing-couple {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .pricing-couple i {
            font-size: 1.5rem;
            color: #f472b6;
            margin-top: 3px;
        }

        .pricing-couple-price {
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .pricing-couple-total {
            display: block;
            font-size: 0.85rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        .pricing-couple-total s {
            color: #fca5a5;
        }

        .pricing-refund {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: rgba(16, 185, 129, 0.2);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(16, 185, 129, 0.3);
            margin-bottom: 20px;
        }

        .pricing-refund i {
            font-size: 1.5rem;
            color: var(--success-color);
            margin-top: 3px;
        }

        .trial-trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .trial-trust-badges span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .trial-trust-badges i {
            color: var(--success-color);
        }

        /* Includes Card */
        .trial-includes-card {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .trial-includes-card h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .trial-includes-card h3 i {
            color: var(--success-color);
        }

        .trial-includes-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .trial-includes-list li {
            display: flex;
            gap: 15px;
        }

        .include-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .include-icon i {
            font-size: 1rem;
            color: var(--accent-color);
        }

        .trial-includes-list li strong {
            display: block;
            margin-bottom: 3px;
        }

        .trial-includes-list li p {
            font-size: 0.85rem;
            opacity: 0.8;
            margin: 0;
        }

        /* Flights Accordion */
        .trial-flights-accordion {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .flights-toggle {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: background 0.3s ease;
        }

        .flights-toggle:hover {
            background: rgba(255,255,255,0.1);
        }

        .flights-toggle span {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .flights-toggle-icon {
            transition: transform 0.3s ease;
        }

        .flights-toggle.active .flights-toggle-icon {
            transform: rotate(180deg);
        }

        .flights-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
        }

        .flights-content.active {
            max-height: 500px;
            padding: 0 25px 25px;
        }

        .flights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 20px 0;
        }

        .flight-option {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }

        .flight-option strong {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 5px;
        }

        .flight-option p {
            font-size: 0.85rem;
            opacity: 0.8;
            margin: 0 0 10px;
        }

        .flight-price {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .flight-option small {
            font-size: 0.75rem;
            opacity: 0.7;
        }

        .flights-note {
            font-size: 0.85rem;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Triple Guarantee */
        .trial-guarantees {
            margin-bottom: 2rem;
        }

        .trial-guarantees h3 {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .trial-guarantees h3 i {
            color: var(--accent-color);
        }

        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .guarantee-card {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .guarantee-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .guarantee-icon i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .guarantee-card h4 {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .guarantee-badge {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .guarantee-card p {
            font-size: 0.85rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Dates & CTA */
        .trial-dates-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 2rem;
        }

        .trial-dates {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 25px;
        }

        .trial-dates h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dates-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 15px;
        }

        .date-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.1);
            padding: 12px 15px;
            border-radius: 8px;
        }

        .date-item.sold-out {
            opacity: 0.5;
        }

        .date-item-date {
            font-weight: 600;
        }

        .date-item-spots {
            font-size: 0.85rem;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(16, 185, 129, 0.3);
        }

        .date-item-spots.low {
            background: rgba(245, 158, 11, 0.3);
            color: var(--accent-color);
        }

        .date-item-spots.sold-out {
            background: rgba(239, 68, 68, 0.3);
            color: #fca5a5;
        }

        .dates-individual {
            font-size: 0.9rem;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* CTA Box */
        .trial-cta-box {
            background: rgba(255,255,255,0.15);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .cta-price {
            margin-bottom: 20px;
        }

        .cta-price-main {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .cta-price-main small {
            font-size: 1rem;
            font-weight: 400;
        }

        .cta-price-couple {
            display: block;
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        .trial-cta-box .btn {
            width: 100%;
            margin-bottom: 20px;
        }

        .cta-alternative {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .cta-alternative span {
            display: block;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .cta-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: 600;
            padding: 10px 20px;
            background: var(--whatsapp-color);
            border-radius: 50px;
            transition: var(--transition);
        }

        .cta-whatsapp:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }

        .cta-trust-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .cta-trust-badges span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .cta-trust-badges i {
            color: var(--success-color);
        }

        /* Trial Testimonial */
        .trial-testimonial {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-quote-icon {
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 2rem;
            color: var(--accent-color);
            opacity: 0.5;
        }

        .trial-testimonial blockquote {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 20px;
            padding: 0 40px;
        }

        .testimonial-author-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .testimonial-author-box .testimonial-stars {
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .testimonial-author-box strong {
            font-size: 1.1rem;
        }

        .testimonial-author-box span {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Trial FAQ */
        .trial-faq {
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            padding: 30px;
        }

        .trial-faq h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .trial-faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .trial-faq-item {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .trial-faq-question {
            width: 100%;
            padding: 18px 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            text-align: left;
            transition: background 0.3s ease;
        }

        .trial-faq-question:hover {
            background: rgba(255,255,255,0.1);
        }

        .trial-faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent-color);
        }

        .trial-faq-item.active .trial-faq-question i {
            transform: rotate(45deg);
        }

        .trial-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .trial-faq-item.active .trial-faq-answer {
            max-height: 1000px;
        }

        .trial-faq-answer p,
        .trial-faq-answer ul,
        .trial-faq-answer ol {
            padding: 0 20px;
            margin-bottom: 15px;
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .trial-faq-answer ul,
        .trial-faq-answer ol {
            padding-left: 40px;
        }

        .trial-faq-answer li {
            margin-bottom: 8px;
        }

        .trial-faq-answer p:last-child,
        .trial-faq-answer ul:last-child,
        .trial-faq-answer ol:last-child {
            padding-bottom: 20px;
        }

        /* ========================================
           SECTION 10: KÚPA NA DIAĽKU (NOVÁ)
        ======================================== */
        .remote-purchase {
            background: var(--bg-light);
        }

        .remote-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .remote-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Content Grid */
        .remote-content-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 2rem;
        }

        /* For Whom */
        .remote-for-whom {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .remote-for-whom h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .remote-for-whom h3 i {
            color: var(--primary-color);
        }

        .remote-for-whom ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .remote-for-whom li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-color);
        }

        .remote-for-whom li i {
            color: var(--success-color);
            margin-top: 4px;
        }

        /* How it Works */
        .remote-how-it-works {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .remote-how-it-works h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .remote-how-it-works h3 i {
            color: var(--primary-color);
        }

        .remote-steps {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .remote-step {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .remote-step-num {
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .remote-step strong {
            display: block;
            color: var(--secondary-color);
            margin-bottom: 3px;
        }

        .remote-step p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        /* POA Accordion */
        .remote-poa-accordion {
            background: white;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .poa-toggle {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            color: var(--secondary-color);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: background 0.3s ease;
        }

        .poa-toggle:hover {
            background: var(--bg-light);
        }

        .poa-toggle span {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .poa-toggle span i:first-child {
            color: var(--primary-color);
        }

        .poa-toggle-icon {
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        .poa-toggle.active .poa-toggle-icon {
            transform: rotate(180deg);
        }

        .poa-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
        }

        .poa-content.active {
            max-height: 500px;
            padding: 0 25px 25px;
        }

        .poa-content p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .poa-content ol {
            padding-left: 20px;
            color: var(--text-color);
        }

        .poa-content li {
            margin-bottom: 10px;
        }

        /* Bottom Grid */
        .remote-bottom-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 30px;
            margin-bottom: 2rem;
        }

        /* Guarantees */
        .remote-guarantees {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .remote-guarantees h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .remote-guarantees h3 i {
            color: var(--primary-color);
        }

        .remote-guarantee-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .remote-guarantee-item:last-child {
            margin-bottom: 0;
        }

        .remote-guarantee-item > i {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .remote-guarantee-item strong {
            display: block;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .remote-guarantee-item p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Price & CTA */
        .remote-price-cta {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .remote-price-box {
            margin-bottom: 25px;
        }

        .remote-price-box h3 {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .remote-price-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 15px;
        }

        .remote-price-main span:first-child {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .remote-price-main strong {
            font-size: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .remote-price-main span:last-child {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .remote-price-box > p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .remote-price-note {
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .remote-price-note i {
            color: var(--primary-color);
        }

        .remote-price-cta .btn {
            width: 100%;
        }

        /* Trial Link */
        .remote-trial-link {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow-sm);
        }

        .remote-trial-link > i {
            font-size: 2rem;
            color: var(--accent-color);
        }

        .remote-trial-link p {
            margin: 0;
            color: var(--text-color);
        }

        .remote-trial-link a {
            color: var(--primary-color);
            font-weight: 600;
        }

        .remote-trial-link a:hover {
            text-decoration: underline;
        }

        /* ========================================
           RESPONSIVE - SEKCIE 9-10
        ======================================== */
        @media (max-width: 992px) {
            .trial-main-grid {
                grid-template-columns: 1fr;
            }

            .guarantees-grid {
                grid-template-columns: 1fr;
            }

            .trial-dates-cta {
                grid-template-columns: 1fr;
            }

            .remote-content-grid {
                grid-template-columns: 1fr;
            }

            .remote-bottom-grid {
                grid-template-columns: 1fr;
            }

            .flights-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .pricing-amount {
                font-size: 2.5rem;
            }

            .trial-testimonial blockquote {
                font-size: 1rem;
                padding: 0 20px;
            }

            .testimonial-quote-icon {
                display: none;
            }

            .trial-faq-question {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .trial-trust-badges {
                flex-direction: column;
                align-items: center;
            }

            .cta-trust-badges {
                flex-direction: column;
            }

            .cta-price-main {
                font-size: 2rem;
            }
        }


        /* ========================================
           SECTION 10: FOTOGALÉRIA
        ======================================== */
        .gallery {
            background: var(--bg-light);
        }

        .gallery-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .gallery-main {
            position: relative;
            width: 100%;
            aspect-ratio: 16/10;
            border-radius: var(--border-radius);
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 15px;
            box-shadow: var(--shadow-lg);
        }

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

        .gallery-main:hover img {
            transform: scale(1.03);
        }

        .gallery-main-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: white;
        }

        .gallery-main:hover .gallery-main-overlay {
            opacity: 1;
        }

        .gallery-main-icon {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .gallery-main-text {
            font-size: 1rem;
            font-weight: 500;
        }

        .gallery-main-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 40px 25px 25px;
            color: white;
        }

        .gallery-main-caption h4 {
            font-size: 1.3rem;
            margin: 0 0 8px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .gallery-main-caption h4 i {
            color: var(--accent-color);
        }

        .gallery-main-caption p {
            font-size: 0.95rem;
            margin: 0;
            opacity: 0.9;
        }

        /* Carousel malých fotiek */
        .gallery-thumbs-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 0;
            flex: 1;
            -webkit-overflow-scrolling: touch;
        }

        .gallery-thumbs::-webkit-scrollbar {
            height: 6px;
        }

        .gallery-thumbs::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }

        .gallery-thumbs::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }

        .gallery-thumb {
            flex-shrink: 0;
            width: 100px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .gallery-thumb:hover {
            opacity: 1;
            transform: translateY(-3px);
        }

        .gallery-thumb.active {
            border-color: var(--primary-color);
            opacity: 1;
            box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumbs-nav {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: white;
            color: var(--primary-color);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-thumbs-nav:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: var(--border-radius);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            color: var(--accent-color);
        }

        .lightbox-caption {
            text-align: center;
            margin-top: 20px;
            color: white;
        }

        .lightbox-caption h4 {
            font-size: 1.2rem;
            margin: 0 0 5px;
        }

        .lightbox-caption p {
            font-size: 0.95rem;
            margin: 0;
            opacity: 0.8;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            font-size: 2rem;
            padding: 20px 15px;
            cursor: pointer;
            transition: var(--transition);
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.2);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

.gallery .section-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}
        /* ========================================
           RESPONSIVE - SEKCIE 5-10
        ======================================== */
        @media (max-width: 768px) {
            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-card {
                flex-direction: column;
                text-align: center;
            }

            .about-photo {
                margin: 0 auto;
            }

            .trial-content {
                grid-template-columns: 1fr;
            }

            .gallery-main {
                aspect-ratio: 4/3;
            }

            .gallery-main-caption h4 {
                font-size: 1.1rem;
            }

            .gallery-main-caption p {
                font-size: 0.85rem;
            }

            .gallery-thumb {
                width: 80px;
                height: 55px;
            }

            .gallery-thumbs-nav {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .lightbox-nav {
                padding: 15px 10px;
                font-size: 1.5rem;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .property-card,
            .tour-card {
                min-width: 260px;
                max-width: 260px;
            }

            .gallery-main-caption {
                padding: 30px 15px 15px;
            }

            .gallery-main-caption h4 {
                font-size: 1rem;
            }

            .gallery-thumb {
                width: 70px;
                height: 50px;
            }

            .trial-highlight .stat {
                font-size: 2rem;
                flex-direction: column;
                gap: 10px;
            }
        }

        /* ========================================
           SECTION 11: TESTIMONIALS
        ======================================== */
        .testimonials {
            background: var(--bg-white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--bg-light);
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-quote {
            position: absolute;
            top: 20px;
            left: 20px;
            color: var(--primary-light);
            font-size: 1.5rem;
            opacity: 0.5;
        }

        .testimonial-card blockquote {
            font-style: italic;
            font-size: 1rem;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-stars {
            color: var(--accent-color);
            font-size: 1rem;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            gap: 3px;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .testimonial-location {
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .testimonial-location i {
            color: var(--primary-color);
            font-size: 0.8rem;
        }

        /* ========================================
           SECTION 12: AKO TO FUNGUJE
        ======================================== */
        .how-it-works {
            background: var(--bg-light);
        }

        .steps-desktop {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .steps-desktop::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--primary-light);
            z-index: 0;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            box-shadow: var(--shadow-md);
        }

        .step h3 {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .step p {
            font-size: 0.9rem;
            color: var(--text-light);
            max-width: 150px;
            margin: 0 auto;
        }

        .steps-mobile {
            display: none;
        }

        .step-card {
            min-width: 250px;
            max-width: 250px;
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-sm);
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .step-card .step-number {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .how-it-works .section-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* ========================================
           SECTION 13: E-BOOK
        ======================================== */
        .ebook {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
            color: white;
        }

        .ebook-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: center;
        }

        .ebook-image {
            text-align: center;
        }

        .ebook-cover {
            max-width: 250px;
            margin: 0 auto;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .ebook-cover:hover {
            transform: rotate(-3deg) scale(1.02);
        }

        .ebook-info h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .ebook-title {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .ebook-features {
            margin-bottom: 2rem;
        }

        .ebook-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .ebook-features li i {
            color: var(--accent-color);
            font-size: 1.1rem;
        }

        .ebook-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 400px;
        }

        .ebook-form input {
            padding: 14px 18px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
        }

        .ebook-form input:focus {
            outline: 3px solid var(--accent-color);
        }

        .ebook-form .btn {
            background: var(--accent-color);
        }

        .ebook-form .btn:hover {
            background: #d97706;
        }

        /* ========================================
           SECTION 14: FAQ
        ======================================== */
        .faq {
            background: var(--bg-white);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-question {
            width: 100%;
            padding: 20px 0;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question:focus-visible {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        .faq-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer p {
            padding-bottom: 20px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ========================================
           SECTION 15: SLEDUJTE NÁS
        ======================================== */
        .follow-us {
            background: var(--bg-light);
            padding: 60px 0;
        }

        .follow-us .section-title {
            margin-bottom: 0.5rem;
        }

        .follow-us .section-subtitle {
            margin-bottom: 2rem;
        }

        .follow-us-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .follow-us-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 25px 35px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text-color);
        }

        .follow-us-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .follow-us-card .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .follow-us-card .icon i {
            font-size: 1.5rem;
            color: white;
        }

        .follow-us-card span:last-child {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* ========================================
           SECTION 16: KONTAKT
        ======================================== */
        .contact {
            background: var(--bg-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form h3,
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .form-group label {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 14px 18px;
            border: 1px solid #d1d5db;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 400;
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 1.1rem;
            color: var(--primary-color);
        }

        .contact-icon-whatsapp {
            background: var(--whatsapp-color);
        }

        .contact-icon-whatsapp i {
            color: white;
        }

        .contact-info-item h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .contact-info-item p,
        .contact-info-item a {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .contact-info-item a:hover {
            color: var(--primary-color);
        }

        /* ========================================
           SECTION 17: FOOTER
        ======================================== */
        .footer {
            background: var(--bg-dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: #9ca3af;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-social a i {
            font-size: 1rem;
            color: white;
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-column ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-column a {
            color: #9ca3af;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-column a i {
            font-size: 0.85rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            color: #9ca3af;
            font-size: 0.85rem;
        }

        .footer-legal a:hover {
            color: white;
        }

        /* ========================================
           MODALS
        ======================================== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: var(--border-radius);
            max-width: 500px;
            width: 100%;
            padding: 40px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            animation: modalSlideIn 0.3s ease;
        }

        .modal-content-large {
            max-width: 700px;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            color: var(--text-color);
            background: var(--bg-light);
        }

        .modal h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            padding-right: 40px;
        }

        .modal form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .legal-content {
            max-height: 60vh;
            overflow-y: auto;
            padding-right: 10px;
        }

        .legal-content h4 {
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .legal-content h4:first-child {
            margin-top: 0;
        }

        .legal-content p {
            margin-bottom: 1rem;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .legal-content a {
            color: var(--primary-color);
        }

        /* ========================================
           COOKIE BANNER
        ======================================== */
        .cookie-banner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-dark);
            color: white;
            padding: 20px;
            z-index: 2001;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
        }

        .cookie-banner.active {
            display: block;
        }

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

        .cookie-content p {
            flex: 1;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-content p i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .cookie-content a {
            color: var(--primary-light);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-buttons button {
            padding: 10px 20px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: inherit;
        }

        .cookie-accept {
            background: var(--primary-color);
            color: white;
        }

        .cookie-accept:hover {
            background: var(--primary-dark);
        }

        .cookie-settings {
            background: transparent;
            color: white;
            border: 1px solid white !important;
        }

        .cookie-settings:hover {
            background: rgba(255,255,255,0.1);
        }

        /* ========================================
           RESPONSIVE - SEKCIE 11-17
        ======================================== */
        @media (max-width: 1024px) {
            body > footer .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .steps-desktop {
                display: none;
            }

            .steps-mobile {
                display: block;
            }

            .ebook-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .ebook-features {
                text-align: left;
            }

            .ebook-form {
                margin: 0 auto;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            body > footer.footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            body > footer.footer-social {
                justify-content: center;
            }

            body > footer.footer-column ul {
                align-items: center;
            }

           body > footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            body > footer.follow-us-card {
                padding: 20px 25px;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-content p {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .step-card {
                min-width: 260px;
                max-width: 260px;
            }

            .follow-us-grid {
                gap: 15px;
            }

            .follow-us-card {
                padding: 15px 20px;
            }

            .modal-content {
                padding: 30px 20px;
            }
        }

        /* ========================================
           RESPONSIVE - GENERAL
        ======================================== */
        @media (max-width: 1024px) {
            .social-sidebar {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .nav-menu {
                display: none;
            }

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

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                padding: 0 20px;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .scroll-indicator {
                display: none;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-btn {
                width: 55px;
                height: 55px;
            }

            .back-to-top {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .feature-card,
            .video-card {
                min-width: 260px;
                max-width: 260px;
            }
        }
		
		        /* ========================================
           MODAL: TRIP RESERVATION
        ======================================== */
        .modal-content-trip {
            max-width: 600px;
        }

        .trip-modal-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .trip-modal-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .trip-modal-header h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
            padding-right: 0;
        }

        .trip-modal-header p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
        }

        .trip-modal-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .trip-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .trip-form-error {
            display: none;
            align-items: center;
            gap: 10px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid var(--error-color);
            border-radius: var(--border-radius);
            padding: 12px 15px;
            color: var(--error-color);
        }

        .trip-form-error.show {
            display: flex;
        }

        /* Price Summary */
        .trip-price-summary {
            background: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 20px;
        }

        .trip-price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .trip-price-row:last-of-type {
            margin-bottom: 15px;
        }

        .trip-price-total {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--secondary-color);
            padding-top: 10px;
            border-top: 1px solid #e5e7eb;
        }

        .trip-price-total span:last-child {
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .trip-price-note {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--success-color);
            background: rgba(16, 185, 129, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
        }

        /* GDPR */
        .trip-gdpr {
            font-size: 0.9rem;
        }

        .trip-gdpr label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
        }

        .trip-gdpr input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
        }

        .trip-gdpr a {
            color: var(--primary-color);
        }

        .trip-submit-btn {
            width: 100%;
        }

        .trip-form-note {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0;
        }

        /* Success State */
        .trip-modal-success {
            display: none;
            text-align: center;
            padding: 20px 0;
        }

        .trip-modal-success.show {
            display: block;
        }

        .trip-modal-form.hidden {
            display: none;
        }

        .success-icon {
            font-size: 4rem;
            color: var(--success-color);
            margin-bottom: 20px;
        }

        .trip-modal-success h4 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .trip-modal-success > p {
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .success-details {
            background: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: left;
            margin-bottom: 25px;
        }

        .success-details p {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .success-details ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .success-details li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-color);
        }

        .success-details li i {
            color: var(--success-color);
        }

        .success-contact {
            margin-bottom: 20px;
        }

        .success-contact p {
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .success-contact .btn {
            background: var(--whatsapp-color);
        }

        .success-contact .btn:hover {
            background: #1da851;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .trip-form-grid {
                grid-template-columns: 1fr;
            }

            .modal-content-trip {
                padding: 25px 20px;
            }
        }

        /* ========================================
           OPRAVA - CELKOVÝ VÝNOS VEDĽA SEBA
        ======================================== */
        .calc-total-grid {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 15px !important;
        }
        
        .total-item {
            flex: 0 1 auto !important;
            min-width: 150px !important;
        }
        
        .total-plus, .total-equals {
            display: block !important;
            flex-shrink: 0 !important;
        }
        
        @media (max-width: 768px) {
            #calculator:not(.pdf-render) .calc-total-grid {
                flex-wrap: wrap !important;
            }
            
            #calculator:not(.pdf-render) .total-plus, #calculator:not(.pdf-render) .total-equals {
                display: none !important;
            }
            
            #calculator:not(.pdf-render) .total-item {
                flex: 1 1 45% !important;
                min-width: 130px !important;
            }
            
            #calculator:not(.pdf-render) .total-item.grand-total {
                flex: 1 1 100% !important;
            }
        }
        
        @media (max-width: 480px) {
            #calculator:not(.pdf-render) .calc-total-grid {
                flex-direction: column !important;
            }
            
            #calculator:not(.pdf-render) .total-item {
                width: 100% !important;
                flex: none !important;
            }
        }
