 :root {
            --vm-pink: #ff008c;
            --vm-green: #00860e;
            --vm-dark: #0f172a;
            --vm-text: #334155;
            --vm-light-bg: #f8fafc;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--vm-text);
            background-color: var(--vm-light-bg);
            /* Mesh Gradient fluid foarte fin in fundal pentru a pastra aspectul aerisit */
            background-image: 
                radial-gradient(at 0% 0%, rgba(0, 134, 14, 0.04) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(255, 0, 140, 0.03) 0px, transparent 50%);
            background-attachment: fixed;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--vm-dark);
        }

		h2{padding-top:12px;}
		
        @keyframes pulseGlow {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

       
        .glass-navbar {
            background: rgba(255, 255, 255, 0.65) !important;
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border-bottom: 1px solid rgba(255,255,255,0.7);
            padding: 12px 0;
            transition: all 0.4s ease;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        }

        .navbar-brand img {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-link {
            color: var(--vm-dark) !important;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            padding: 10px 18px !important;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: var(--vm-green) !important;
            background: rgba(0, 134, 14, 0.05);
        }

        .dropdown-menu {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.8);
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 12px 0;
            margin-top: 10px;
        }
        
        .dropdown-item {
            font-weight: 500;
            font-size: 0.9rem;
            padding: 10px 24px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 0, 140, 0.05);
            color: var(--vm-pink);
            transform: translateX(5px);
        }

        
        .hero-section {
            padding: 180px 0 100px 0;
            text-align: center;
            position: relative;
        }
        
        .hero-section h1 {
            font-size: 3.8rem;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            /* Gradient stabil (fara animatie) */
            background: linear-gradient(135deg, var(--vm-green) 0%, #00d215 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .inside {padding-bottom:50px;}
        
        .inside h1 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            /* Gradient stabil (fara animatie) */
            background: linear-gradient(135deg, var(--vm-green) 0%, #00d215 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .intro-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--vm-dark);
            line-height: 1.3;
        }
        
        .inside h2 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--vm-dark);
            line-height: 1.3;
        }
        
        .hero-image-wrapper {
            position: relative;
        }

        .hero-image-wrapper img {
            border: 8px solid rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            object-fit: cover;
            min-height:350px;
            width: 100%;
            height: auto;
        }
        
        
        .intro-text p {
            font-size: 1.2rem;
            color: var(--vm-text);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 500;
        }

        .services-section {
            padding: 60px 0 80px 0;
            position: relative;
            z-index: 2;
        }

        .modern-card {
            display: block;
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
        }

        .modern-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 134, 14, 0.1);
            border-color: rgba(0, 134, 14, 0.1);
        }

        .card-img-wrapper {
            width: 100%;
            height: 240px;
            overflow: hidden;
        }

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

        .modern-card:hover .card-img-wrapper img {
            transform: scale(1.05);
        }

        .modern-card h3 {
            font-size: 1.25rem;
            margin: 0;
            padding: 24px;
            text-align: center;
            color: var(--vm-dark);
            transition: color 0.3s ease;
        }

        .modern-card:hover h3 {
            color: var(--vm-pink);
        }


        .map-section {
            padding: 60px 0 100px 0;
            text-align: center;
        }
        
        .map-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border: 4px solid #fff;
        }

   
        .modern-footer {
            background-color: #121212;
            color: #e2e8f0;
            padding: 100px 0 60px 0;
            font-size: 0.95rem;
            position: relative;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--vm-pink) 0%, var(--vm-green) 100%);
        }
        
        .modern-footer h3 {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 28px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .modern-footer a {
            color: #94a3b8;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .modern-footer a:hover {
            color: var(--vm-green);
            transform: translateX(5px);
        }

        .footer-brand {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 5px;
            line-height: 1;
        }

        .social-icons a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.4s ease;
        }

        .social-icons a:hover {
            background: rgba(0, 134, 14, 0.1);
            border-color: var(--vm-green);
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 134, 14, 0.2);
        }

     
        .floating-widgets {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-end;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white !important;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            animation: pulseGlow 2.5s infinite;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .btn-whatsapp:hover { 
            transform: scale(1.05) translateY(-5px); 
        }

        .floating-voucher img {
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
            transition: all 0.4s ease;
            border: 2px solid #fff;
        }
        
        .floating-voucher:hover img { 
            transform: scale(1.05) rotate(-3deg); 
            box-shadow: 0 20px 40px rgba(255, 0, 140, 0.2);
        }

        .modal-backdrop.show {
            backdrop-filter: blur(8px);
            background-color: rgba(15, 23, 42, 0.6);
            opacity: 1 !important;
        }
        
        .modal-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .form-control {
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            background-color: rgba(255,255,255,0.8);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background-color: #fff;
            border-color: var(--vm-pink);
            box-shadow: 0 0 0 4px rgba(255, 0, 140, 0.1);
        }
        
        .btn-submit-modal {
            background: linear-gradient(135deg, var(--vm-green), #00ba13);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 134, 14, 0.2);
        }
        
        .btn-submit-modal:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 134, 14, 0.3);
        }