        /* Custom Kwaderno Studio Styles */
        :root {
            --primary: #000000;
            --secondary: #666666;
            --accent: #ff00ff;
            --bg-light: #fcfcfc;
            --bg-dark: #000000;
            --border: #eeeeee;
            --font-main: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            overflow-y: scroll; /* Always show scrollbar to prevent layout jump */
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--primary);
            background-color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            letter-spacing: -0.01em;
            /* Prevent shaking on scroll animations */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        a {
            color: #000000 !important;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Modern Announcement Banner */
        .announcement-banner {
            background: #000;
            color: #fff;
            padding: 10px 20px;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1100;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .announcement-banner a {
            color: #fff !important;
            text-decoration: underline;
            font-weight: 700;
            margin-left: 5px;
        }

        .close-banner {
            cursor: pointer;
            position: absolute;
            right: 20px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .close-banner:hover { opacity: 1; }

        @media (max-width: 767px) {
            .announcement-banner {
                font-size: 10px;
                padding: 8px 40px 8px 15px;
                line-height: 1.3;
            }
        }

        /* fix for AOS shaking/jittering - Deprecated for GSAP but kept for compatibility if needed */
        [data-aos] {
            pointer-events: none;
            transition-property: transform, opacity;
            will-change: transform, opacity;
        }
        [data-aos].aos-animate {
            pointer-events: auto;
        }

        /* Modern Section Spacing */
        .section-padding {
            padding: clamp(80px, 10vh, 140px) 0 60px !important;
            contain: content;
        }

        @media (max-width: 991px) {
            .section-padding {
                padding: 80px 0 40px !important;
            }
            .feedback-card, .announcement-tag {
                border-radius: 15px !important;
            }
        }

        /* Modern Slideshow Separator */
        .slideshow-separator {
            height: 400px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slideshow-separator::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
        }

        .separator-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .separator-content h2 {
            font-size: 3.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin: 0;
        }

        .package-card {
            border: 1px solid rgba(0,0,0,0.03);
            border-radius: 20px;
            padding: 40px;
            background: #fff;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .package-card.popular {
            background: #000;
            color: #fff;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
            border-color: rgba(0,0,0,0.08);
        }

        /* Custom Buttons */
        .btn-kwaderno {
            padding: 15px 35px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: none;
            display: inline-block;
        }

        .btn-kwaderno-primary {
            background: #000;
            color: #fff !important;
        }

        .btn-kwaderno-outline {
            background: transparent;
            border: 2px solid #000;
            color: #000 !important;
        }

        .btn-kwaderno-light {
            background: #fff;
            color: #000 !important;
        }

        .btn-kwaderno:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        /* Smooth Scroll (Lenis) styles */
        html.lenis {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .lenis.lenis-scrolling iframe {
            pointer-events: none;
        }

        /* 3D Floating Animation */
        @keyframes floating {
            0% { transform: translate(0, 0px) rotate(0deg); }
            50% { transform: translate(0, 15px) rotate(2deg); }
            100% { transform: translate(0, -0px) rotate(0deg); }
        }

        .floating-3d {
            animation: floating 4s ease-in-out infinite;
        }

        /* Hero Section Enhancements */
        .hero-v2 {
            position: relative;
            background: #fff;
            overflow: hidden;
            padding: 180px 0 100px;
        }

        .hero-v2::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-v2::after {
            content: '';
            position: absolute;
            bottom: 10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* --- Hero Mobile & Booking Instructions --- */
        .hero-mobile-wrapper {
            background: #fff;
            border-radius: 40px;
            padding: 40px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
            transition: all 0.5s ease;
        }
        .hero-mobile-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.1);
        }
        .hero-phone-img {
            max-width: 220px;
            filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
            animation: floating 4s ease-in-out infinite;
        }
        .step-number {
            width: 32px;
            height: 32px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 14px;
            flex-shrink: 0;
        }
        .instruction-step h6 {
            color: #000;
            font-size: 16px;
        }
        .instruction-step p {
            font-size: 13px;
            line-height: 1.4;
        }

        .navbar-brand {
            text-transform: none !important;
        }

        /* --- Modern Header --- */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            padding: 12px 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        
        .main-header.sticky {
            padding: 8px 0;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        body.has-banner .main-header {
            top: 38px;
        }
        @media (max-width: 991px) {
            body.has-banner .main-header {
                top: 34px;
            }
        }
        .header-logo {
            height: 40px;
            width: auto;
            transition: all 0.4s ease;
        }
        .nav-link {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #000 !important;
            padding: 10px 20px !important;
            opacity: 0.6;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .nav-link:hover, .nav-link.active {
            opacity: 1;
            transform: translateY(-1px);
        }

        /* Header Socials Premium Spacing */
        .header-socials {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 20px;
        }
        .social-icon-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000 !important;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            opacity: 0.7;
            border-radius: 50%;
        }
        .social-icon-link:hover {
            opacity: 1;
            background: #f8f9fa;
            transform: translateY(-2px);
        }
        .navbar-toggler {
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border-radius: 12px;
            color: #000;
            margin-left: auto;
        }
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #fff;
                padding: 30px;
                border-radius: 20px;
                margin-top: 15px;
                box-shadow: 0 20px 50px rgba(0,0,0,0.1);
                border: 1px solid rgba(0,0,0,0.05);
            }
            .nav-link {
                margin: 5px 0;
                padding: 12px 20px !important;
                border-radius: 12px;
                text-align: center;
            }
            .nav-link:hover, .nav-link.active {
                background: #f8f9fa;
            }
            .nav-link::after { display: none; }
        }

        /* --- Backdrop Palette --- */
        .backdrop-palette {
            position: fixed;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1050; /* Higher than header for accessibility */
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px 12px;
            border-radius: 100px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            gap: 15px;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* Palette Toggle for Mobile */
        .palette-toggle-mobile {
            display: none;
            position: fixed;
            right: 20px;
            bottom: 110px; /* Above bottom nav */
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1060;
            align-items: center;
            justify-content: center;
            color: #000;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .palette-toggle-mobile i {
            transition: transform 0.4s ease;
        }

        .palette-toggle-mobile.active i {
            transform: rotate(180deg);
        }

        @media (max-width: 991px) {
            .backdrop-palette {
                right: -80px; /* Hide by default */
                top: auto;
                bottom: 165px;
                transform: none;
                padding: 15px 8px;
                gap: 10px;
                box-shadow: -5px 5px 25px rgba(0,0,0,0.1);
            }
            .backdrop-palette.show {
                right: 20px;
            }
            .palette-toggle-mobile {
                display: flex;
            }
            .palette-title {
                display: none;
            }
        }
        .palette-title {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 8px;
            opacity: 0.7;
        }
        .color-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #fff;
            cursor: default;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .color-dot:hover {
            transform: scale(1.8);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            z-index: 10;
        }
        .color-dot::after {
            content: attr(data-name);
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            background: #000;
            color: #fff;
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        .color-dot:hover::after { 
            opacity: 1; 
            right: 40px;
        }

        .dot-white { background: #ffffff; border: 1px solid #eee; }
        .dot-babypink { background: #f8c8dc; }
        .dot-darkgrey { background: #555555; }
        .dot-lightgrey { background: #d3d3d3; }
        .dot-mustard { background: #e1ad01; }
        .dot-nude { background: #bc9684; }

        @media (max-width: 991px) {
            footer {
                padding-bottom: 80px !important;
            }
        }

        /* --- Footer Toggle Mobile --- */
        @media (max-width: 991px) {
            #footerCollapseContent.collapse:not(.show) {
                display: none !important;
            }
            #footerCollapseContent.collapsing {
                height: 0;
                overflow: hidden;
                transition: height 0.35s ease;
                display: block !important;
            }
            .footer-toggle-btn {
                font-size: 11px !important;
                font-weight: 700 !important;
                text-transform: uppercase !important;
                letter-spacing: 1px !important;
                border-color: rgba(255,255,255,0.2) !important;
                color: rgba(255,255,255,0.8) !important;
                transition: all 0.3s ease !important;
            }
            .footer-toggle-btn:hover, .footer-toggle-btn:focus {
                background: rgba(255,255,255,0.1) !important;
                border-color: #fff !important;
                color: #fff !important;
            }
            .footer-toggle-btn[aria-expanded="true"] {
                background: #fff !important;
                color: #000 !important;
            }
        }

        /* --- Glassmorphism & Modern UI Enhancements --- */
        .feedback-card, .package-card, .announcement-card {
            border: 1px solid rgba(0,0,0,0.03);
            background: #fff;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .feedback-card:hover, .package-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            border-color: rgba(0,0,0,0.08);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 24px;
        }

        /* Premium Text Styling */
        .hero-title {
            font-size: clamp(3.8rem, 11vw, 7rem);
            line-height: 0.85;
            letter-spacing: -0.05em;
            font-weight: 900 !important;
            margin-bottom: 35px !important;
            color: #000;
        }

        .text-accent-premium {
            font-style: italic;
            font-family: serif; /* Modern editorial look often mixes serif/sans */
            font-weight: 400;
            background: linear-gradient(135deg, #000 0%, #666 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-right: 10px;
        }

        .hero-tagline {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            opacity: 0.85;
            line-height: 1.7;
            font-weight: 400;
            color: #333;
            max-width: 600px;
            letter-spacing: -0.01em;
        }

        .hero-studio-name span {
            display: inline-block;
            position: relative;
            padding-bottom: 5px;
        }

        .hero-studio-name span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: #000;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-up {
            animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        }

        /* Hover Reveal Effect */
        .hover-reveal {
            position: relative;
            overflow: hidden;
        }
        .hover-reveal::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #000;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .hover-reveal:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* --- Modern Enhancements --- */
        .feedback-card, .package-card, .addon-card {
            border: 1px solid rgba(0,0,0,0.04) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02) !important;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        }

        .feedback-card:hover, .package-card:hover, .addon-card:hover {
            box-shadow: 0 30px 60px rgba(0,0,0,0.08) !important;
            transform: translateY(-10px) scale(1.02);
        }

        /* Hero Text Animation Fix */
        .hero-title, .hero-tagline {
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        /* Improved Scrollbar for Premium Feel */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #888;
        }

        .btn-hero-premium {
            background: #000;
            color: #fff !important;
            padding: 20px 50px;
            border-radius: 100px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            border: none;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: inline-block;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-hero-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .btn-hero-premium:hover::before {
            left: 100%;
        }

        .btn-hero-premium:hover {
            background: #222;
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            color: #fff !important;
        }

        /* Hero Social Links Premium */
        .hero-social-link {
            width: 54px;
            height: 54px;
            background: #fff;
            color: #000 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .hero-social-link:hover {
            background: #000;
            color: #fff !important;
            transform: translateY(-8px) rotate(8deg);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .hero-socials-minimal {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Center Book Appointment Button on Mobile */
        @media (max-width: 767px) {
            .hero-actions {
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center;
                width: 100%;
            }
            .btn-hero-premium {
                width: 100% !important;
                max-width: 320px !important;
                padding: 18px 30px !important;
                margin: 0 auto !important;
                display: block !important;
            }
            .hero-socials-minimal {
                margin-top: 20px;
                justify-content: center !important;
            }
        }

        .btn-kwaderno {
            padding: clamp(14px, 2vh, 18px) clamp(30px, 4vw, 45px) !important;
            font-weight: 800;
            border-radius: 100px;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-transform: uppercase;
            font-size: clamp(10px, 1vw, 12px) !important;
            letter-spacing: 0.18em;
            display: inline-block;
            border: none;
            cursor: pointer;
            backface-visibility: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .btn-kwaderno-primary {
            background: #000;
            color: #fff !important;
        }

        .btn-kwaderno-primary:hover {
            background: #222;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .btn-kwaderno-light {
            background: #fff;
            color: #000 !important;
        }

        .btn-kwaderno-light:hover {
            background: #f8f9fa;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .btn-kwaderno-outline {
            border: 2px solid #000;
            color: #000 !important;
            background: transparent;
        }

        .btn-kwaderno-outline:hover {
            background: #000;
            color: #fff !important;
            transform: translateY(-5px);
        }

        /* Hero Carousel Premium Styles */
        .hero-carousel-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero-carousel {
            border-radius: 30px;
            overflow: hidden;
            border: 6px solid #fff;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            background: #f8f9fa; /* Background for loading state */
        }

        .hero-carousel .item {
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-carousel .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform 0.5s ease;
        }

        .hero-carousel .item:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 991px) {
            .hero-carousel .item {
                height: 400px !important;
            }
        }

        @media (max-width: 767px) {
            .hero-carousel .item {
                height: 350px !important;
            }
        }

        .carousel-progress-container {
            position: absolute;
            bottom: 20px;
            left: 30px;
            right: 30px;
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            overflow: hidden;
            z-index: 10;
        }

        .carousel-progress-bar {
            width: 0%;
            height: 100%;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
        }

        /* --- Modern Responsive Fixes --- */
        @media (max-width: 991px) {
            .hero-v2 {
                padding: 120px 0 60px;
                text-align: center !important;
            }
            .hero-title {
                font-size: clamp(2.8rem, 10vw, 4rem) !important;
                line-height: 0.9 !important;
                margin-bottom: 20px !important;
            }
            .text-accent-premium {
                padding-right: 5px;
            }
            .hero-tagline {
                font-size: 15px !important;
                line-height: 1.6 !important;
                max-width: 100% !important;
                margin-bottom: 30px !important;
                padding: 0 10px;
            }
            .hero-actions {
                gap: 15px !important;
            }
            .btn-hero-premium {
                padding: 18px 35px !important;
                font-size: 13px !important;
            }
            .hero-carousel-wrapper {
                margin-top: 40px !important;
                max-width: 320px !important;
            }
            .hero-carousel .item {
                height: 400px !important;
            }
        }

        /* Floating Button - Responsive & Hidden with Bottom Nav */
        .floating-book-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1050;
            background: #000;
            color: #fff !important;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none !important;
        }

        .floating-book-btn:hover {
            transform: scale(1.1) translateY(-5px);
            background: #111;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }

        @media (max-width: 767px) {
            .package-card {
                padding: 30px 20px;
                border-radius: 20px;
                border: 1px solid #f1f1f1 !important;
                box-shadow: 0 5px 15px rgba(0,0,0,0.02) !important;
            }
            .package-card.popular {
                border: none !important;
            }
            .package-card .amount {
                font-size: 3rem !important;
            }
            .package-features li {
                font-size: 12px !important;
                margin-bottom: 8px !important;
            }
            .addon-card {
                padding: 20px !important;
                border-radius: 16px !important;
                box-shadow: 0 5px 15px rgba(0,0,0,0.02) !important;
                background: #fff !important;
                border: 1px solid #f5f5f5 !important;
            }
            .addon-card .addon-icon {
                width: 40px !important;
                height: 40px !important;
                margin-right: 12px !important;
            }
            .addon-card h6 {
                font-size: 14px !important;
                font-weight: 700 !important;
            }
            .addon-card .addon-price {
                font-size: 15px !important;
                font-weight: 800 !important;
                margin-top: 15px !important;
            }
            .floating-book-btn {
                bottom: 25px;
                right: 25px;
                width: 60px;
                height: 60px;
                font-size: 22px;
                transform: none !important;
            }
            /* Category tabs on mobile */
            .landing-category-tabs {
                width: 100%;
                justify-content: center;
            }
            .l-cat-tab {
                padding: 12px 16px !important;
                font-size: 12px !important;
                border-radius: 30px !important;
                margin: 4px !important;
                flex: 1 1 auto !important;
                max-width: 48% !important;
                text-align: center !important;
                white-space: nowrap !important;
            }
            /* Section heading on mobile */
            .display-5 {
                font-size: 1.8rem !important;
            }
            /* Package cards on mobile */
            .package-card h3 {
                font-size: 1.3rem !important;
            }
            .package-card h6 {
                font-size: 0.7rem !important;
            }
            .package-card .price .currency {
                font-size: 1.2rem !important;
            }
            .package-card .price .amount {
                font-size: 2.5rem !important;
            }
        }

        @media (max-width: 767px) {
        }

        /* Landscape orientation fixes for mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-v2 { min-height: 120vh; }
            .phone-frame { width: 180px; }
            .backdrop-palette { display: none; } /* Hide palette in small landscape to save space */
        }
        .mockup-header .status-bar {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .mockup-header h6 {
            font-size: 14px;
            font-weight: 800;
            margin: 0;
            color: #000;
        }

        .wizard-step-preview {
            flex: 1;
            padding: 20px;
            display: none;
            flex-direction: column;
            animation: fadeIn 0.5s ease;
        }

        .wizard-step-preview.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mockup Content Styling */
        .mock-label {
            font-size: 9px;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            margin-bottom: 5px;
            display: block;
        }
        .mock-input {
            width: 100%;
            height: 35px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 12px;
            border: 1px solid #eee;
        }
        .mock-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mock-card.selected {
            border-color: #000;
            background: #f8f9fa;
        }
        .mock-card-icon {
            width: 30px;
            height: 30px;
            background: #eee;
            border-radius: 6px;
        }
        .mock-card-text {
            flex: 1;
        }
        .mock-card-title {
            font-size: 11px;
            font-weight: 700;
            display: block;
        }
        .mock-card-price {
            font-size: 10px;
            color: #666;
        }

        .mock-btn {
            width: 100%;
            height: 40px;
            background: #000;
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            margin-top: auto;
        }

        .step-indicator {
            padding: 15px;
            display: flex;
            justify-content: center;
            gap: 6px;
            background: #fff;
        }

        .step-dot {
            width: 5px;
            height: 5px;
            background: #eee;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .step-dot.active {
            background: #000;
            width: 15px;
            border-radius: 3px;
        }

        .phone-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-v2 h1 {
            font-size: 4rem;
            line-height: 1;
            margin-bottom: 30px;
            letter-spacing: -2px;
        }

        .hero-v2 p {
            font-size: 18px;
            color: var(--secondary);
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.6;
        }

        @media (max-width: 991px) {
            .hero-v2 h1 { font-size: 3rem; }
            .hero-v2 p { font-size: 16px; }
        }

        @media (max-width: 767px) {
            .hero-v2 {
                padding: 100px 0 60px;
                text-align: center;
            }
            .hero-v2 h1 { 
                font-size: 2.5rem;
                letter-spacing: -1px;
            }
            .hero-v2 p { 
                margin-left: auto;
                margin-right: auto;
            }
            .phone-frame {
                width: 220px;
                height: 450px;
                border-radius: 35px;
            }
        }

        .hero-phone-mockup:hover .phone-frame {
            transform: rotateY(-10deg) rotateX(5deg);
        }

        /* --- Global Responsive Optimizations --- */
        .header-logo {
            height: clamp(35px, 5vw, 55px);
            width: auto;
            transition: all 0.3s ease;
        }

        .navbar {
            padding: clamp(15px, 2vh, 30px) 0;
        }

        @media (max-width: 575px) {
            .navbar-brand img {
                height: 30px;
            }
            .navbar-toggler {
                padding: 4px 8px;
                font-size: 14px;
            }
        }

        /* Prevent horizontal scroll on small devices */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Improved spacing for sections on mobile */
        @media (max-width: 767px) {
            .section-padding {
                padding: 80px 0;
            }
        }

        .primary-navigation {
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            background: transparent;
        }

        .sticky-header {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            padding: 0 !important;
            border-bottom: 1px solid rgba(0,0,0,0.03);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
        }
        
        .sticky-header .navbar {
            padding: 15px 0 !important;
        }

        .navbar-brand img {
            height: 48px;
            width: auto;
            transition: all 0.4s ease;
        }
        .sticky-header .navbar-brand img {
            height: 40px;
        }

        /* --- Booking Wizard UI Refinement --- */
        .modal-content {
            border: none;
            border-radius: 30px;
            box-shadow: 0 30px 70px rgba(0,0,0,0.15);
            overflow: hidden;
        }
        .modal-header {
            border-bottom: 1px solid #f5f5f5;
            padding: 35px 40px 20px;
        }
        .modal-body {
            padding: 40px;
        }
        
        @media (max-width: 767px) {
            .hero-v2 { height: auto; min-height: auto; padding: 120px 0 60px; }
            .hero-v2 h1 { font-size: 3rem; letter-spacing: -1.5px; }
            .hero-v2 p { font-size: 16px; }
            .package-card { padding: 40px 25px; border-radius: 30px; }
            .package-card .price .amount { font-size: 3rem; }
            .package-card .price .currency { font-size: 1.2rem; }
            .addon-card { padding: 25px; border-radius: 20px; }
            .addon-card h6 { font-size: 14px; }
            .addon-card .fw-800 { font-size: 16px; }
            .section-padding { padding: 80px 0; }
            .modal-header { padding: 20px 20px 15px; }
            .modal-body { padding: 20px 15px 30px; }
            .modal-dialog { margin: 10px auto; }
            
            /* Improved Mobile Wizard Progress */
            .wizard-progress { 
                margin-bottom: 25px; 
                gap: 0;
                max-width: 100%;
                justify-content: space-around;
                padding: 0 10px;
            }
            .progress-step { 
                width: 36px; 
                height: 36px; 
                font-size: 12px;
                flex-shrink: 0;
            }
            .progress-step::after { 
                top: 40px; 
                font-size: 8px; 
                white-space: nowrap;
                display: none; /* Hide labels on small screens */
            }
            
            /* Mobile Package Cards - Larger Touch Targets */
            .package-select-card { 
                padding: 18px 14px; 
                border-radius: 15px;
                min-height: 120px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .package-select-card h6 { font-size: 13px; margin-bottom: 5px; }
            .package-select-card .price-tag { font-size: 16px; margin-bottom: 10px; }
            .package-select-card ul { 
                display: block !important; 
                font-size: 9px; 
                margin-top: 8px;
                padding-top: 8px;
            }
            .package-select-card ul li { margin-bottom: 4px; }
            .package-select-card ul li i { font-size: 8px; margin-right: 5px; width: 12px; }
            
            /* Mobile Time Slots - Bigger Touch Areas */
            .time-slot { 
                padding: 14px 8px; 
                font-size: 12px; 
                border-radius: 12px; 
                min-height: 60px;
                cursor: pointer;
            }
            .time-slot .status-text { font-size: 8px; margin-top: 4px; }
            
            /* Mobile Navigation Buttons - Full Width Stacked */
            .wizard-step .d-flex.justify-content-between { 
                flex-direction: column-reverse;
                gap: 10px;
            }
            .next-step, .prev-step { 
                width: 100%; 
                margin-bottom: 0;
                padding: 16px 20px; 
                font-size: 12px;
                border-radius: 50px;
                text-align: center;
                justify-content: center;
            }
            .wizard-step h5 { font-size: 1.1rem; margin-bottom: 1.5rem !important; }
            
            /* Mobile Addons Table */
            .addons-scroll-container { max-height: 280px; }
            .addons-table th, .addons-table td { padding: 12px 8px; }
            .addons-table td { font-size: 12px; }
            .qty-selector { padding: 4px 8px !important; }
            .qty-selector button { width: 24px !important; height: 24px !important; }
            .qty-input { width: 28px !important; font-size: 13px !important; }
            
            /* Mobile Payment Cards */
            .col-6.col-md-3 { width: 50%; }
            .col-6.col-md-4 { width: 50%; }
            .payment-method-card { padding: 18px 12px; border-radius: 15px; min-height: 80px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
            .payment-method-card img { height: 24px !important; }
            .payment-method-card div { font-size: 12px; }
            
            /* Mobile Form Inputs - Larger Touch Areas */
            .wizard-step .form-control {
                padding: 14px 16px;
                font-size: 14px;
                border-radius: 12px;
            }
            .wizard-step label.form-label { font-size: 11px; margin-bottom: 6px; }
            
            /* Mobile Success Screen */
            #bookingSuccess h3 { font-size: 1.4rem; }
            #bookingSuccess .fa-5x { font-size: 4rem; }
            #bookingSuccess .alert { font-size: 12px; padding: 12px 16px; }
            
            /* Appointment Summary Card Mobile Adjustments - Screenshot Friendly */
            .appointment-summary-card {
                max-width: 100%;
                border-radius: 15px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            .appointment-summary-card .summary-header {
                padding: 12px 15px;
            }
            .appointment-summary-card .summary-header h5 {
                font-size: 14px !important;
            }
            .appointment-summary-card .summary-header small {
                font-size: 10px !important;
            }
            .appointment-summary-card .summary-header .badge {
                font-size: 9px !important;
                padding: 4px 8px !important;
            }
            .appointment-summary-card .summary-body {
                padding: 12px 15px;
            }
            .appointment-summary-card .summary-item {
                padding: 8px 10px;
                margin-bottom: 0;
            }
            .appointment-summary-card .summary-item small {
                font-size: 9px !important;
                margin-bottom: 2px !important;
            }
            .appointment-summary-card .summary-item span {
                font-size: 11px !important;
            }
            .appointment-summary-card .fs-5 {
                font-size: 1.1rem !important;
            }
            
            #bookingSuccess p.small {
                font-size: 11px !important;
                margin-bottom: 15px !important;
            }
            
            #bookingSuccess .alert {
                padding: 10px !important;
                margin-bottom: 15px !important;
            }
        }

        @media (max-width: 480px) {
            .progress-step { width: 32px; height: 32px; font-size: 11px; }
            .progress-step::after { display: none; }
            .wizard-progress { margin-bottom: 20px; }
            .col-6.col-md-3 { width: 100%; } /* Stack packages on very small phones */
            .col-6.col-md-4 { width: 50%; }
            .package-select-card { min-height: 100px; }
            .modal-content { border-radius: 20px; }
        }

        .wizard-progress {
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
            position: relative;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .wizard-progress::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background: #eee;
            z-index: 0;
            transform: translateY(-50%);
        }
        .progress-step {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            color: #ccc;
            position: relative;
        }
        .progress-step::after {
            content: attr(data-label);
            position: absolute;
            top: 40px;
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            color: #999;
            font-weight: 700;
        }
        .progress-step.active {
            border-color: #000;
            color: #000;
            transform: scale(1.2);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .progress-step.active::after { color: #000; }
        .progress-step.completed {
            background: #000;
            border-color: #000;
            color: #fff;
        }
        
        /* Mobile-specific wizard modal overrides */
        @media (max-width: 767px) {
            .modal-booking-wizard {
                max-width: 100%;
                margin: 0;
                min-height: 100vh;
            }
            .modal-booking-wizard .modal-content {
                border-radius: 20px 20px 0 0;
                min-height: 100vh;
            }
            .modal-booking-wizard .modal-body {
                padding: 20px 15px 30px;
                overflow-y: auto;
                max-height: calc(100vh - 80px);
            }
            .modal-booking-wizard .modal-header {
                padding: 15px 20px;
            }
            .modal-booking-wizard .modal-title {
                font-size: 1.1rem;
            }
            
            /* Wizard navigation buttons - full width stacked on mobile */
            .wizard-nav-buttons {
                position: sticky;
                bottom: 0;
                background: #fff;
                padding: 15px 0;
                margin: 0 -15px -30px;
                padding-left: 15px;
                padding-right: 15px;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
                z-index: 10;
            }
            .wizard-nav-buttons .btn {
                padding: 14px 20px;
                font-size: 13px;
                border-radius: 50px;
            }
            .wizard-nav-buttons .prev-step {
                max-width: 35%;
            }
            .wizard-nav-buttons .next-step {
                max-width: 65%;
            }
            
            /* Mobile scrollable areas with smooth scrolling */
            .addons-scroll-container,
            .time-slots-scroll {
                max-height: 250px;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }
        }

        /* Full width on mobile for wizard form elements */
        @media (max-width: 767px) {
            .wizard-step .row > [class*="col-"] {
                padding-left: 5px;
                padding-right: 5px;
            }
            .wizard-step .row {
                margin-left: -5px;
                margin-right: -5px;
            }
            /* Smooth transition for step switching */
            .wizard-step {
                animation: fadeInMobile 0.3s ease;
            }
            @keyframes fadeInMobile {
                from { opacity: 0; transform: translateX(10px); }
                to { opacity: 1; transform: translateX(0); }
            }
        }
        
        .form-control {
            border: 1px solid #eee;
            padding: 15px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: #fcfcfc;
        }
        .form-control:focus {
            background: #fff;
            border-color: #000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* Category Tabs for Booking Wizard */
        .category-tabs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 5px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .category-tabs::-webkit-scrollbar { display: none; }
        
        .cat-tab {
            padding: 8px 18px;
            border-radius: 50px;
            background: #f8f9fa;
            border: 1px solid #eee;
            color: #666;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .cat-tab:hover {
            background: #f0f0f0;
            color: #000;
        }
        .cat-tab.active {
            background: #000;
            color: #fff;
            border-color: #000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .package-item {
            animation: fadeInScale 0.4s ease-out;
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* --- Space-Friendly List-Style Selection --- */
        .category-select-card, .package-select-card {
            border: 1px solid #f0f0f0;
            border-radius: 18px;
            padding: 14px 18px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            background: #fff;
            display: flex;
            align-items: flex-start; /* Changed from center to align top for long descriptions */
            gap: 15px;
            position: relative;
            margin-bottom: 8px;
            width: 100%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.01);
        }

        /* Scrollable containers to prevent whole-modal scrolling */
        .wizard-list-container {
            max-height: 420px;
            overflow-y: auto;
            padding-right: 8px;
            margin-right: -8px;
            scrollbar-width: thin;
            scrollbar-color: #eee transparent;
        }

        .wizard-list-container::-webkit-scrollbar {
            width: 4px;
        }
        .wizard-list-container::-webkit-scrollbar-thumb {
            background: #eee;
            border-radius: 10px;
        }

        @media (max-width: 767px) {
            .wizard-list-container {
                max-height: calc(100vh - 320px); /* Dynamic height for mobile */
                min-height: 200px;
            }
            .modal-kwaderno-form .row.g-3 {
                --bs-gutter-y: 0.75rem; /* Tighter gaps for mobile form */
            }
            .modal-kwaderno-form label.form-label {
                font-size: 11px;
                margin-bottom: 4px;
            }
        }

        .category-select-card:hover, .package-select-card:hover {
            border-color: #000;
            background: #fff;
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
        }

        .category-select-card.selected, .package-select-card.selected {
            background: #000;
            border-color: #000;
            color: #fff !important;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            transform: translateX(8px);
        }

        .category-select-card .cat-icon-wrapper {
            width: 44px;
            height: 44px;
            background: #f8f9fa;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            font-size: 1rem;
            margin-top: 2px; /* Small offset for flex-start alignment */
        }

        .category-select-card.selected .cat-icon-wrapper {
            background: rgba(255,255,255,0.15);
            color: #fff;
        }

        .cat-content-text, .pkg-content-text {
            flex-grow: 1;
            text-align: left;
            min-width: 0; /* Ensures text truncation/wrapping works */
        }

        .category-select-card h5, .package-select-card h6 {
            margin: 0 0 2px 0;
            font-weight: 800;
            font-size: 1rem;
            letter-spacing: -0.2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .category-select-card p, .package-select-card .pkg-description {
            margin: 0;
            font-size: 0.8rem;
            opacity: 0.7;
            line-height: 1.3;
        }

        .package-select-card .pkg-meta {
            text-align: right;
            flex-shrink: 0;
            padding-left: 15px;
            border-left: 1px solid #f0f0f0;
            min-width: 95px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Align meta to top to avoid large gaps */
            padding-top: 5px;
        }

        .package-select-card.selected .pkg-meta {
            border-left-color: rgba(255,255,255,0.15);
        }

        .package-select-card .price-tag {
            font-weight: 900;
            font-size: 1.15rem;
            margin-bottom: 0;
            color: #000;
            line-height: 1;
        }

        .package-select-card.selected .price-tag {
            color: #fff;
        }

        .package-select-card .pkg-duration {
            font-size: 0.65rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.5;
        }

        /* Compact Features for List Style */
        .package-select-card .pkg-features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 6px;
            padding: 0;
            list-style: none;
        }

        .package-select-card .pkg-features-list li {
            font-size: 0.68rem;
            background: #f8f9fa;
            padding: 2px 8px;
            border-radius: 50px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            border: 1px solid #f0f0f0;
            white-space: nowrap;
        }

        .package-select-card.selected .pkg-features-list li {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border-color: rgba(255,255,255,0.05);
        }

        .selection-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .package-select-card.selected .selection-indicator,
        .category-select-card.selected .selection-indicator {
            background: #fff;
            border-color: #fff;
            color: #000;
        }

        @media (min-width: 992px) {
            .package-grid-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .package-select-card { margin-bottom: 0; }
        }

        @media (max-width: 767px) {
            .wizard-list-container { max-height: 380px; }
            .category-select-card, .package-select-card {
                padding: 12px 14px;
                gap: 12px;
                border-radius: 15px;
            }
            .category-select-card .cat-icon-wrapper {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
            }
            .package-select-card .pkg-meta {
                min-width: 80px;
                padding-left: 12px;
            }
            .package-select-card .price-tag { font-size: 1rem; }
            .package-select-card h6 { font-size: 0.95rem; }
        }

        /* Landing Page Category Tabs */
        .landing-category-tabs {
            display: flex;
            gap: 12px;
            background: #f8f9fa;
            padding: 8px;
            border-radius: 50px;
            border: 1px solid #eee;
        }

        .l-cat-tab {
            padding: 10px 24px;
            border-radius: 50px;
            border: none;
            background: transparent;
            color: #666;
            font-size: 13px;
            font-weight: 700;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .l-cat-tab:hover {
            color: #000;
        }

        .l-cat-tab.active {
            background: #000;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .l-pkg-item {
            animation: landingPkgFadeIn 0.5s ease-out;
        }

        @keyframes landingPkgFadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 767px) {
            .landing-category-tabs {
                gap: 6px;
                padding: 4px;
                background: #f1f3f5;
                border: none;
                border-radius: 12px;
                overflow-x: auto;
                max-width: 100%;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none; 
            }
            .l-cat-tab {
                padding: 8px 16px;
                font-size: 11px;
                letter-spacing: 0.5px;
                border-radius: 8px;
                flex: 0 0 auto;
            }
            .l-cat-tab.active {
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }
        }

        /* --- Modern Booking Wizard UI --- */
        .modal-booking-wizard .modal-content {
            overflow: hidden;
            border-radius: 24px !important;
        }

        .wizard-progress {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
            padding: 0 40px; /* Increased padding for desktop labels */
        }

        .wizard-progress::before {
            content: '';
            position: absolute;
            top: 16px;
            left: 50px;
            right: 50px;
            height: 2px;
            background: #f0f0f0;
            z-index: -1;
        }

        .progress-step {
            width: 36px;
            height: 36px;
            background: #fff;
            border: 2px solid #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 14px;
            color: #bbb;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .progress-step::after {
            content: attr(data-label);
            position: absolute;
            top: 45px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            color: #ddd;
            transition: all 0.3s ease;
        }

        .progress-step.active {
            border-color: #000;
            color: #000;
            background: #fff;
            box-shadow: 0 0 0 6px rgba(0,0,0,0.04);
            transform: scale(1.15);
        }

        .progress-step.active::after {
            color: #000;
            top: 48px;
        }

        .progress-step.completed {
            background: #000;
            border-color: #000;
            color: #fff;
        }

        .progress-step.completed::after {
            color: #000;
        }

        @media (max-width: 575px) {
            .wizard-progress { padding: 0 10px; }
            .wizard-progress::before { top: 14px; left: 15px; right: 15px; }
            .progress-step { width: 28px; height: 28px; font-size: 11px; }
            .progress-step::after { top: 35px; font-size: 8px; }
            .progress-step.active::after { top: 38px; }
            .modal-body { padding: 30px 20px !important; }
        }

        /* Wizard Navigation */
        .wizard-step {
            display: none !important; /* Ensure it's hidden unless active */
        }

        .wizard-step.active {
            display: block !important;
            animation: wizardSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        @keyframes wizardSlideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Package & Payment Cards */
        .package-select-card, .payment-method-card {
            border: 2px solid #f2f2f2;
            border-radius: 20px;
            padding: 22px 18px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            position: relative;
            background: #fff;
            display: flex;
            flex-direction: column;
        }

        .package-select-card:hover, .payment-method-card:hover {
            border-color: #000;
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        }

        .package-select-card.selected, .payment-method-card.selected {
            border-color: #000;
            background: #000;
            color: #fff !important;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .package-select-card .check-mark {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 18px;
            color: #eee;
            transition: all 0.3s ease;
        }

        .package-select-card.selected .check-mark {
            color: #fff;
        }

        .package-select-card h6 {
            font-weight: 800;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .package-select-card .price-tag {
            font-weight: 900;
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: #000;
        }

        .package-select-card.selected .price-tag {
            color: #fff;
        }

        .package-select-card ul {
            padding: 0;
            list-style: none;
            font-size: 11px;
            color: #777;
            margin-top: auto;
            border-top: 1px solid #f8f8f8;
            padding-top: 15px;
        }

        .package-select-card.selected ul {
            color: rgba(255,255,255,0.7);
            border-top-color: rgba(255,255,255,0.1);
        }

        .package-select-card ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            line-height: 1.4;
        }

        .package-select-card ul li i {
            margin-right: 8px;
            font-size: 10px;
            width: 14px;
            text-align: center;
            margin-top: 3px;
            color: #999;
        }

        .package-select-card.selected ul li i {
            color: #fff;
        }

        /* Sticky Navigation on Mobile */
        @media (max-width: 767px) {
            .wizard-nav-buttons {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: #fff;
                padding: 12px 20px;
                padding-bottom: env(safe-area-inset-bottom, 12px);
                border-top: 1px solid #f0f0f0;
                z-index: 1050;
                display: flex !important;
                gap: 12px !important;
                margin: 0 !important;
            }
            .wizard-step { 
                padding-bottom: 90px; 
            }
            .modal-booking-wizard .modal-header {
                position: sticky;
                top: 0;
                background: #fff;
                z-index: 1050;
                padding: 20px !important;
                border-bottom: 1px solid #f0f0f0 !important;
            }
            .modal-kwaderno-form .step-header h4 {
                font-size: 1.25rem;
            }
        }

        /* Better Time Slots on Mobile */
        @media (max-width: 767px) {
            .time-slot {
                padding: 18px 12px;
                min-height: 70px;
                border-radius: 15px;
            }
            .time-slot .slot-time { font-size: 15px; font-weight: 800; }
            .time-slot .slot-range { font-size: 11px; margin-top: 2px; }
        }

        .package-select-card, .addon-item-card, .payment-method-card {
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 25px 20px;
            background: #fff;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .package-select-card:hover, .addon-item-card:hover, .payment-method-card:hover {
            border-color: #000;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        }
        .package-select-card.selected, .addon-item-card.selected, .payment-method-card.selected {
            background: #000;
            border-color: #000;
            color: #fff !important;
        }
        .package-select-card.selected h6, .package-select-card.selected .price-tag, 
        .package-select-card.selected ul li, .package-select-card.selected .check-mark,
        .addon-item-card.selected span, .payment-method-card.selected div {
            color: #fff !important;
        }

        .package-select-card {
            position: relative;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 20px 15px;
            border: 2px solid #eee;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: #fff;
        }
        .package-select-card:hover {
            border-color: #ccc;
            transform: translateY(-2px);
        }
        .package-select-card .check-mark {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 16px;
            color: #eee;
            transition: all 0.3s ease;
        }
        .package-select-card h6 {
            font-weight: 800;
            margin-bottom: 5px;
            font-size: 0.9rem;
            padding-right: 20px;
        }
        .package-select-card .price-tag {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #000;
        }
        .package-select-card ul {
            padding: 0;
            list-style: none;
            font-size: 11px;
            color: #666;
            margin-top: auto;
            border-top: 1px solid #f5f5f5;
            padding-top: 12px;
        }
        .package-select-card ul li {
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
            line-height: 1.3;
        }
        .package-select-card ul li i {
            margin-right: 8px;
            font-size: 10px;
            width: 14px;
            text-align: center;
            margin-top: 3px;
        }
        .package-select-card.selected ul li i {
            color: #fff;
        }
        .package-select-card.selected ul {
            border-top-color: rgba(255,255,255,0.1);
        }

        .addons-scroll-container {
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #eee;
            border-radius: 15px;
            margin-bottom: 15px;
        }
        .addons-table {
            width: 100%;
            margin-bottom: 0;
        }
        .addons-table th {
            background: #fcfcfc;
            padding: 12px 15px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1;
        }
        .addon-row {
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .addon-row td {
            padding: 12px 15px;
            font-size: 13px;
            border-bottom: 1px solid #f9f9f9;
            vertical-align: middle;
        }
        .addon-row:hover {
            background: #f9f9f9;
        }
        .addon-row.selected {
            background: #000 !important;
            color: #fff !important;
        }
        .addon-row.selected td {
            border-bottom-color: rgba(255,255,255,0.1);
        }
        .addon-row .check-box {
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.2s ease;
        }
        .addon-row.selected .check-box {
            border-color: #fff;
            background: #fff;
            color: #000;
        }

        .time-slots-scroll {
            max-height: 350px;
            overflow-y: auto;
            padding-right: 5px;
        }
        .time-slots-scroll::-webkit-scrollbar { width: 4px; }
        .time-slots-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

        .time-slot {
            border: 1px solid #f0f0f0;
            padding: 12px 8px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 11px;
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            min-height: 55px;
        }
        .time-slot .slot-time {
            display: block;
            font-size: 12px;
        }
        .time-slot .slot-range {
            display: block;
            font-size: 9px;
            opacity: 0.7;
            font-weight: 500;
        }
        .time-slot:hover:not(.reserved) {
            border-color: #000;
            background: #fcfcfc;
        }
        .time-slot.selected {
            background: #000 !important;
            color: #fff !important;
            border-color: #000 !important;
        }
        .time-slot.selected .slot-range {
            color: #fff !important;
            opacity: 0.9;
        }
        .time-slot.reserved {
            background: #f8f8f8;
            color: #bbb;
            cursor: not-allowed;
            border-style: dashed;
            border-color: #ddd;
            pointer-events: none;
        }
        .time-slot.reserved .status-text {
            color: #aaa;
        }
        .time-slot.loading-slots {
            opacity: 0.5;
            pointer-events: none;
        }
        .time-slot .status-text {
            font-size: 8px;
            text-transform: uppercase;
            margin-top: 4px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        /* Add-ons table and quantity selector improvements */
        .addons-table td {
            padding: 15px 10px;
        }
        .qty-selector {
            border: 1px solid #ddd;
            user-select: none;
        }
        .qty-selector button:hover {
            color: #000;
            background: #e9ecef;
        }
        .qty-selector input {
            cursor: default;
        }
        .qty-input::-webkit-inner-spin-button,
        .qty-input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
        /* Appointment Summary Card - Screenshot Friendly */
        .appointment-summary-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(0,0,0,0.08);
        }
        .appointment-summary-card .summary-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            padding: 25px 30px;
            color: #fff;
        }
        .appointment-summary-card .summary-body {
            padding: 25px 30px;
            background: #fff;
        }
        .appointment-summary-card .summary-item {
            background: #f8f9fa;
            padding: 15px 18px;
            border-radius: 12px;
            height: 100%;
        }
        .appointment-summary-card .summary-item small {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
            display: block;
        }
        .appointment-summary-card .summary-item span {
            font-size: 15px;
        }
        
        @media (max-width: 767px) {
            .addons-table th, .addons-table td {
                padding: 10px 5px;
                font-size: 11px;
            }
            .qty-selector {
                padding: 2px 5px !important;
            }
            .qty-selector button {
                width: 18px !important;
                height: 18px !important;
            }
            .qty-input {
                width: 20px !important;
                font-size: 11px !important;
            }
        }
        .faq-v2 .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .faq-v2 .accordion-button {
            padding: 25px;
            font-weight: 700;
            color: var(--primary);
            background: #fff;
            box-shadow: none;
        }

        .faq-v2 .accordion-button:not(.collapsed) {
            background: #fff;
            color: var(--primary);
        }

        /* Testimonial Section Styles */
        .feedback-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .feedback-card:hover {
            border-color: #000;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }
        .user-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f5f5f5;
            color: var(--primary);
            margin: 0 5px;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }
        .social-btn:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }
        .bg-dark .social-btn {
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .bg-dark .social-btn:hover {
            background: #fff;
            color: #000;
        }
        /* Ensure dark background sections have white text */
        .bg-dark, 
        .bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6, 
        .bg-dark p, .bg-dark span, .bg-dark li, .bg-dark div, .bg-dark label, .bg-dark a:not(.btn-kwaderno) {
            color: #ffffff !important;
        }
        .bg-dark .text-muted, .bg-dark .text-secondary, .bg-dark .text-white-50 {
            color: rgba(255,255,255,0.7) !important;
        }
        .bg-dark .social-btn {
            background: rgba(255,255,255,0.1) !important;
            color: #ffffff !important;
        }
        .bg-dark .social-btn:hover {
            background: #ffffff !important;
            color: #000000 !important;
        }

        /* Fix Footer Shaking & Layout Shifts */
        footer {
            contain: layout paint;
            backface-visibility: hidden;
            transform: translateZ(0);
            position: relative;
            z-index: 1;
            /* Disable animations on footer to prevent shaking */
            animation: none !important;
        }

        /* Ensure smooth transitions without layout shifts */
        .sticky-header {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            padding: 0 !important;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            /* Prevent content jump */
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
        }

        /* Announcement Banner */
        .announcement-banner {
            background: #000;
            color: #fff;
            padding: 10px 0;
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1040;
            text-transform: uppercase;
        }
        .announcement-banner a {
            color: #fff;
            text-decoration: underline;
            margin-left: 10px;
        }
        .announcement-banner .close-banner {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .announcement-banner .close-banner:hover {
            opacity: 1;
        }

        /* Modern Package Cards */
        .package-card {
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: var(--card-radius);
            padding: 40px;
            background: #fff;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }




        body.has-banner .fixed-top {
            top: 38px; /* Height of the banner */
        }
        @media (max-width: 767px) {
            .announcement-banner { font-size: 10px; padding: 8px 30px 8px 10px; }
            body.has-banner .fixed-top { top: 34px; }
        }

        /* Testimonial Avatar Circle */
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        /* Existing Styles */
        /* Announcement Banner Styles */
        .announcement-banner {
            background: #000;
            color: #fff;
            padding: 10px 0;
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1040;
            text-transform: uppercase;
        }
        .announcement-banner a {
            color: #fff !important;
            text-decoration: underline;
            margin-left: 10px;
        }
        .announcement-banner .close-banner {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .announcement-banner .close-banner:hover {
            opacity: 1;
        }
        body.has-banner .fixed-top {
            top: 38px; /* Height of the banner */
        }
        @media (max-width: 767px) {
            .announcement-banner { font-size: 10px; padding: 8px 30px 8px 10px; }
            body.has-banner .fixed-top { top: 34px; }
        }

        /* Announcement Cards & Tags */
        .announcement-tag {
            display: inline-block;
            padding: 6px 16px;
            background: #000;
            color: #fff;
            border-radius: 100px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .tag-sale { background: #ff4d4d !important; }
        .tag-closed { background: #666 !important; }
        .tag-news { background: #000 !important; }

        .announcement-card {
            border: 1px solid #eee;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: #fff;
        }
        .announcement-card:hover {
            border-color: #000;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }
        .announcement-date {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
            display: block;
        }

        /* Admin Dashboard & Status Badges */
        .status-badge { padding: 6px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
        .badge-pending { background: #fff3cd !important; color: #856404 !important; }
        .badge-confirmed { background: #d1ecf1 !important; color: #0c5460 !important; }
        .badge-completed { background: #d4edda !important; color: #155724 !important; }
        .badge-cancelled { background: #f8d7da !important; color: #721c24 !important; }
        .badge-sale { background: #ff4d4d !important; color: #fff !important; }
        .badge-closed { background: #666 !important; color: #fff !important; }
        .badge-news { background: #000 !important; color: #fff !important; }

        /* Package Card Enhancements */
        .package-card {
            background: #fff;
            padding: 50px 35px;
            border-radius: 40px;
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }
        .package-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.07);
            border-color: rgba(0,0,0,0.1);
        }
        .package-card.popular {
            background: #000;
            color: #fff !important;
            border: none;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        .package-card.popular h3, 
        .package-card.popular h4, 
        .package-card.popular .amount, 
        .package-card.popular .currency,
        .package-card.popular .text-muted,
        .package-card.popular .package-features li {
            color: #fff !important;
        }
        .package-card.popular .text-muted {
            opacity: 0.7;
        }
        .package-card.popular .package-features li i {
            color: #fff !important;
            opacity: 0.8;
        }
        .badge-popular {
            position: absolute;
            top: 25px;
            right: -35px;
            background: #fff;
            color: #000;
            padding: 8px 45px;
            font-size: 9px;
            font-weight: 800;
            transform: rotate(45deg);
            letter-spacing: 2px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-transform: uppercase;
            z-index: 2;
        }
        .package-card .price .currency { font-size: 1.5rem; vertical-align: top; margin-top: 12px; display: inline-block; font-weight: 700; }
        .package-card .price .amount { font-size: 4rem; line-height: 1; letter-spacing: -2px; }
        
        /* Add-on Card Styles */
        .addon-card {
            background: #fff;
            padding: 20px 25px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.01);
        }
        .addon-card .addon-icon {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 15px;
        }
        .addon-card h6 {
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 2px;
        }
        .addon-card p {
            font-size: 11px;
            margin-bottom: 0;
            color: #777;
        }
        .addon-card .addon-price {
            font-weight: 800;
            font-size: 15px;
            color: #000;
            margin-left: 15px;
            white-space: nowrap;
        }
        .addon-card:hover {
            border-color: rgba(0,0,0,0.1);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        @media (max-width: 767px) {
            .addon-card {
                padding: 15px 20px;
                border-radius: 15px;
            }
            .addon-card .addon-icon {
                width: 35px;
                height: 35px;
                margin-right: 12px;
            }
            .addon-card h6 { font-size: 13px; }
            .addon-card p { font-size: 10px; }
            .addon-card .addon-price { font-size: 14px; margin-left: 10px; }
        }

        /* Hover Shadow Utility */
        .hover-shadow:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
        .transition-all { transition: all 0.4s ease; }

        /* Floating Booking Button */
        /* --- Floating Booking Button --- */
        .floating-booking-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #000;
            color: #fff !important; /* Ensure text is white */
            padding: 16px 28px;
            border-radius: 100px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            z-index: 1000;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .floating-booking-btn:hover {
            background: #222;
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
            color: #fff !important;
        }
        .floating-booking-btn i { 
            margin-right: 12px; 
            font-size: 16px;
            color: #fff !important;
        }
        .floating-booking-btn span { 
            font-weight: 700; 
            font-size: 12px; 
            text-transform: uppercase; 
            letter-spacing: 1.5px; 
            color: #fff !important;
        }

        @media (max-width: 767px) {
            .floating-booking-btn {
                bottom: 25px;
                right: 25px;
                padding: 15px;
                width: 50px;
                height: 50px;
                justify-content: center;
            }
            .floating-booking-btn span { display: none; }
            .floating-booking-btn i { margin-right: 0; font-size: 20px; }
        }

/* --- Compact FAQ Styling --- */
.faq-compact .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    border-radius: 0 !important;
    background: transparent;
}

.faq-compact .accordion-item:last-child {
    border-bottom: none;
}

.faq-compact .accordion-button {
    padding: 18px 0;
    font-weight: 600;
    color: #333;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 1rem;
}

.faq-compact .accordion-button:not(.collapsed) {
    color: var(--primary, #000);
}

.faq-compact .accordion-button::after {
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
}

.faq-compact .accordion-body {
    padding: 0 0 20px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Modern Enhancements --- */
.feedback-card, .package-card, .addon-card {
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.feedback-card:hover, .package-card:hover, .addon-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08) !important;
    transform: translateY(-10px) scale(1.02);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8f9fa;
}
::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Hero Text Animation Fix */
.hero-title, .hero-tagline {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* --- Compact Payment Wizard Styles --- */
.payment-method-card {
    padding: 10px 8px !important;
    border-radius: 10px !important;
}
.payment-info-container .bg-light {
    padding: 10px !important;
    border-radius: 10px !important;
}
.payment-details p {
    margin-bottom: 2px !important;
}

@media (max-width: 767px) {
    /* Make modal max height fit screen on mobile */
    .modal-booking-wizard .modal-dialog {
        max-height: 95vh !important;
        margin: 2.5vh auto !important;
    }
    .modal-booking-wizard .modal-content {
        max-height: 95vh !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .modal-booking-wizard .modal-body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 15px !important;
    }
    .modal-booking-wizard .modal-header {
        padding: 12px 15px !important;
    }
    /* Compact step 6 specifically */
    #step6 .step-header {
        margin-bottom: 8px !important;
    }
    #step6 .step-header h4 {
        font-size: 1rem !important;
    }
    #step6 .step-header p {
        font-size: 0.75rem !important;
        margin-bottom: 0 !important;
    }
    #step6 .form-control {
        padding: 8px 10px !important;
    }
    #step6 .btn-kwaderno {
        padding: 10px 20px !important;
    }
    /* Make nav buttons extra sticky and visible */
    #step6 .d-flex.gap-2 {
        position: sticky !important;
        bottom: 0 !important;
        background: white !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        z-index: 10 !important;
        border-top: 1px solid #f0f0f0 !important;
    }
    /* Ensure enough bottom padding so content isn't hidden behind nav */
    #step6 {
        padding-bottom: 60px !important;
    }
}
