Arifin 510 SKY luxury motor yacht with beach mode platform
★ Award-Winning Flybridge Yacht

Arifin 510 SKY

The 510 SKY redefines the flybridge category with its innovative beach mode platform, expansive living spaces, and Baltic optimized design. Available for immediate viewing in Gdansk.

Enquire Now All Luxury Yachts Poland →
15.7m
Length Overall
4.85m
Beam
3
Cabins
2x380
HP Engines
1.2m
Draft
20t
Displacement
28kn
Top Speed
450nm
Range
Gallery

510 SKY Showcase

Explore every detail of the 510 SKY, from its striking exterior to the meticulously crafted interior spaces.

Features

Key Features

🏖️

Beach Mode Platform

Hydraulic swim platform creates a seamless water-to-deck transition for swimming and watersports.

🌅

Flybridge Entertainment

Spacious flybridge with bar, seating for 10+, and optional enclosure for year-round Baltic use.

🛏️

Full-Beam Master Suite

Owner's cabin features panoramic windows, en-suite bathroom with separate shower, and walk-in closet.

🍳

Gourmet Galley

Fully equipped galley with premium appliances, wine storage, and direct access to the cockpit dining area.

🔧

Volvo Penta IPS

Twin Volvo Penta D6-380 engines with joystick docking, dynamic positioning, and whisper-quiet operation.

🛋️

Bespoke Interiors

Multiple layout options with premium wood finishes, Italian leather, and custom color schemes.

Own the Arifin 510 SKY

Starting from €850,000. Contact us via WhatsApp for current availability, financing options, and to schedule your private viewing.

// ========== MOBILE MENU TOGGLE - FIX OVERLAP ========== const navToggle = document.getElementById('navToggle'); const navLinks = document.getElementById('navLinks'); const heroSection = document.querySelector('.hero'); if(navToggle && navLinks){ navToggle.addEventListener('click', function(){ const isActive = navLinks.classList.contains('active'); // Toggle menu navLinks.classList.toggle('active'); // Update aria-expanded untuk aksesibilitas navToggle.setAttribute('aria-expanded', !isActive); // Lock body scroll saat menu terbuka document.body.style.overflow = isActive ? '' : 'hidden'; // Smooth scroll ke atas jika user sudah scroll jauh if(!isActive && window.scrollY > 100){ window.scrollTo({ top: 0, behavior: 'smooth' }); } }); // Close menu + unlock scroll saat klik link navigasi document.querySelectorAll('#navLinks a').forEach(function(link){ link.addEventListener('click', function(){ navLinks.classList.remove('active'); document.body.style.overflow = ''; navToggle.setAttribute('aria-expanded', 'false'); }); }); // Close menu saat klik di luar area menu document.addEventListener('click', function(e){ if(navLinks.classList.contains('active') && !navLinks.contains(e.target) && !navToggle.contains(e.target)){ navLinks.classList.remove('active'); document.body.style.overflow = ''; navToggle.setAttribute('aria-expanded', 'false'); } }); // Close menu saat resize ke desktop window.addEventListener('resize', function(){ if(window.innerWidth > 768 && navLinks.classList.contains('active')){ navLinks.classList.remove('active'); document.body.style.overflow = ''; } }); }