<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Maluchem.pl – Self-Drive Vintage Fiat 126p Experience in Krakow</title>

    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">

    <style>

        :root {

            --primary-red: #d93829;

            --primary-dark: #b52b1e;

            --accent-gold: #f5a623;

            --dark-charcoal: #141414;

            --card-bg: #ffffff;

            --light-bg: #f4f6f8;

            --text-main: #2c3e50;

            --text-muted: #7f8c8d;

        }


        * {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;

        }


        body {

            color: var(--text-main);

            background-color: var(--light-bg);

            line-height: 1.6;

        }


        /* Header & Navigation */

        header {

            background-color: var(--dark-charcoal);

            padding: 0.8rem 8%;

            display: flex;

            justify-content: space-between;

            align-items: center;

            position: sticky;

            top: 0;

            z-index: 1000;

            box-shadow: 0 4px 20px rgba(0,0,0,0.15);

        }


        .brand-logo {

            display: flex;

            align-items: center;

            gap: 12px;

            text-decoration: none;

            color: white;

        }


        .brand-logo svg {

            width: 42px;

            height: 42px;

            fill: var(--primary-red);

        }


        .brand-text {

            font-size: 1.5rem;

            font-weight: 900;

            letter-spacing: -0.5px;

        }


        .brand-text span {

            color: var(--primary-red);

        }


        .btn-nav {

            background-color: var(--primary-red);

            color: white;

            padding: 0.7rem 1.4rem;

            border-radius: 50px;

            text-decoration: none;

            font-weight: 700;

            font-size: 0.95rem;

            transition: all 0.3s ease;

        }


        .btn-nav:hover {

            background-color: var(--primary-dark);

            transform: translateY(-2px);

            box-shadow: 0 4px 12px rgba(217, 56, 41, 0.3);

        }


        /* Hero Section */

        .hero {

            background: linear-gradient(135deg, rgba(20,20,20,0.85), rgba(20,20,20,0.65)), 

                        url('https://images.unsplash.com/photo-1517524206127-48bbd363f3d7?q=80&w=1600') center/cover no-repeat;

            min-height: 85vh;

            display: flex;

            flex-direction: column;

            justify-content: center;

            align-items: center;

            text-align: center;

            color: white;

            padding: 2rem 5%;

        }


        .badge-hero {

            background: rgba(217, 56, 41, 0.2);

            border: 1px solid var(--primary-red);

            color: #ff6b5b;

            padding: 0.4rem 1.2rem;

            border-radius: 30px;

            font-size: 0.9rem;

            font-weight: 700;

            margin-bottom: 1.5rem;

            text-transform: uppercase;

            letter-spacing: 1px;

        }


        .hero h1 {

            font-size: 3.5rem;

            font-weight: 900;

            margin-bottom: 1rem;

            line-height: 1.15;

            max-width: 900px;

        }


        .hero p {

            font-size: 1.25rem;

            max-width: 650px;

            margin-bottom: 2.5rem;

            color: #e0e0e0;

        }


        .btn-hero {

            background-color: var(--primary-red);

            color: white;

            padding: 1.1rem 2.8rem;

            font-size: 1.15rem;

            font-weight: 800;

            border-radius: 50px;

            text-decoration: none;

            transition: all 0.3s ease;

            box-shadow: 0 8px 25px rgba(217, 56, 41, 0.4);

        }


        .btn-hero:hover {

            transform: translateY(-3px);

            background-color: var(--primary-dark);

            box-shadow: 0 12px 30px rgba(217, 56, 41, 0.5);

        }


        /* Key Features Section */

        .features {

            padding: 5rem 8%;

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

            gap: 2rem;

            background: white;

        }


        .feature-box {

            background: var(--light-bg);

            padding: 2.5rem 1.8rem;

            border-radius: 16px;

            text-align: center;

            transition: transform 0.3s ease;

        }


        .feature-box:hover {

            transform: translateY(-5px);

        }


        .feature-box .icon-wrap {

            width: 70px;

            height: 70px;

            background: white;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            margin: 0 auto 1.5rem auto;

            box-shadow: 0 4px 15px rgba(0,0,0,0.05);

        }


        .feature-box i {

            font-size: 1.8rem;

            color: var(--primary-red);

        }


        .feature-box h3 {

            font-size: 1.25rem;

            margin-bottom: 0.75rem;

            font-weight: 700;

        }


        .feature-box p {

            color: var(--text-muted);

            font-size: 0.95rem;

        }


        /* Packages & Pricing Section */

        .pricing-section {

            padding: 5rem 8%;

        }


        .section-header {

            text-align: center;

            margin-bottom: 3.5rem;

        }


        .section-header h2 {

            font-size: 2.5rem;

            font-weight: 800;

            margin-bottom: 0.5rem;

        }


        .section-header p {

            color: var(--text-muted);

            font-size: 1.1rem;

        }


        .pricing-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 2rem;

            align-items: stretch;

        }


        .package-card {

            background: var(--card-bg);

            border-radius: 20px;

            padding: 2.5rem 2rem;

            box-shadow: 0 10px 30px rgba(0,0,0,0.05);

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            position: relative;

            border: 2px solid transparent;

            transition: all 0.3s ease;

        }


        .package-card.popular {

            border-color: var(--primary-red);

            transform: scale(1.03);

        }


        .popular-badge {

            position: absolute;

            top: -15px;

            right: 25px;

            background: var(--primary-red);

            color: white;

            padding: 0.3rem 1rem;

            border-radius: 20px;

            font-size: 0.8rem;

            font-weight: 800;

            text-transform: uppercase;

        }


        .package-header h3 {

            font-size: 1.5rem;

            font-weight: 800;

            margin-bottom: 0.5rem;

        }


        .package-header .duration {

            color: var(--primary-red);

            font-weight: 700;

            font-size: 0.95rem;

            margin-bottom: 1.5rem;

            display: block;

        }


        .price-tag {

            font-size: 2.4rem;

            font-weight: 900;

            color: var(--dark-charcoal);

            margin-bottom: 1.5rem;

        }


        .price-tag span {

            font-size: 1rem;

            color: var(--text-muted);

            font-weight: 400;

        }


        .package-features {

            list-style: none;

            margin-bottom: 2rem;

        }


        .package-features li {

            padding: 0.6rem 0;

            border-bottom: 1px solid #f0f0f0;

            font-size: 0.95rem;

            display: flex;

            align-items: center;

            gap: 10px;

        }


        .package-features li i {

            color: #27ae60;

        }


        .btn-select {

            display: block;

            text-align: center;

            background: var(--dark-charcoal);

            color: white;

            padding: 0.9rem;

            border-radius: 10px;

            text-decoration: none;

            font-weight: 700;

            transition: background 0.3s ease;

        }


        .package-card.popular .btn-select {

            background: var(--primary-red);

        }


        .btn-select:hover {

            opacity: 0.9;

        }


        /* Booking Section */

        .booking-section {

            padding: 5rem 8%;

            background: white;

        }


        .booking-container {

            max-width: 800px;

            margin: 0 auto;

            background: var(--light-bg);

            padding: 3rem;

            border-radius: 20px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.03);

        }


        .booking-form {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 1.5rem;

        }


        .form-group {

            display: flex;

            flex-direction: column;

        }


        .form-group.full {

            grid-column: span 2;

        }


        .form-group label {

            font-weight: 700;

            font-size: 0.9rem;

            margin-bottom: 0.5rem;

        }


        .form-group input, .form-group select, .form-group textarea {

            padding: 0.9rem 1rem;

            border: 1px solid #ddd;

            border-radius: 10px;

            font-size: 1rem;

            outline: none;

            transition: border-color 0.3s ease;

        }


        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {

            border-color: var(--primary-red);

        }


        .btn-submit {

            grid-column: span 2;

            background: var(--primary-red);

            color: white;

            padding: 1.1rem;

            border: none;

            border-radius: 10px;

            font-size: 1.1rem;

            font-weight: 800;

            cursor: pointer;

            transition: background 0.3s ease;

        }


        .btn-submit:hover {

            background: var(--primary-dark);

        }


        /* FAQ Section */

        .faq-section {

            padding: 5rem 8%;

            max-width: 900px;

            margin: 0 auto;

        }


        .faq-item {

            background: white;

            padding: 1.5rem 2rem;

            border-radius: 12px;

            margin-bottom: 1rem;

            box-shadow: 0 4px 12px rgba(0,0,0,0.03);

        }


        .faq-item h4 {

            font-size: 1.1rem;

            font-weight: 700;

            margin-bottom: 0.5rem;

            color: var(--dark-charcoal);

        }


        .faq-item p {

            color: var(--text-muted);

            font-size: 0.95rem;

        }


        /* Footer */

        footer {

            background: var(--dark-charcoal);

            color: white;

            text-align: center;

            padding: 3rem 5%;

            font-size: 0.9rem;

        }


        footer p {

            opacity: 0.7;

            margin-top: 0.5rem;

        }


        @media (max-width: 768px) {

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

            .pricing-card.popular { transform: none; }

            .booking-form { grid-template-columns: 1fr; }

            .form-group.full, .btn-submit { grid-column: span 1; }

            .booking-container { padding: 1.5rem; }

        }

    </style>

</head>

<body>


    <!-- Header / Nav -->

    <header>

        <a href="#" class="brand-logo">

            <!-- Retro Fiat 126p SVG Badge Logo -->

            <svg viewBox="0 0 100 100">

                <circle cx="50" cy="50" r="45" fill="none" stroke="currentColor" stroke-width="5"/>

                <path d="M 25 55 L 35 35 L 65 35 L 75 55 Z" fill="none" stroke="currentColor" stroke-width="4"/>

                <rect x="20" y="55" width="60" height="18" rx="5" fill="currentColor"/>

                <circle cx="32" cy="73" r="7" fill="#141414" stroke="white" stroke-width="2"/>

                <circle cx="68" cy="73" r="7" fill="#141414" stroke="white" stroke-width="2"/>

            </svg>

            <span class="brand-text">MALUCHEM<span>.PL</span></span>

        </a>

        <a href="#book" class="btn-nav">Book Now</a>

    </header>


    <!-- Hero Section -->

    <section class="hero">

        <div class="badge-hero"><i class="fa-solid fa-star"></i> #1 Retro Experience in Krakow</div>

        <h1>Drive a Polish Legend Through Krakow</h1>

        <p>Take the wheel of an iconic vintage Fiat 126p "Maluch". 100% self-drive, iconic city routes, and memories that last a lifetime.</p>

        <a href="#book" class="btn-hero">Reserve Your Fiat Now</a>

    </section>


    <!-- Key Features -->

    <section class="features">

        <div class="feature-box">

            <div class="icon-wrap"><i class="fa-solid fa-steering-wheel"></i></div>

            <h3>100% Self-Drive</h3>

            <p>You take full control of the wheel. Experience authentic 1970s analog driving mechanics.</p>

        </div>

        <div class="feature-box">

            <div class="icon-wrap"><i class="fa-solid fa-route"></i></div>

            <h3>Curated GPS Routes</h3>

            <p>Pre-planned scenic routes covering Old Town panoramas, Kazimierz, and Nowa Huta.</p>

        </div>

        <div class="feature-box">

            <div class="icon-wrap"><i class="fa-solid fa-camera"></i></div>

            <h3>Head-Turner Style</h3>

            <p>The ultimate retro backdrop for your Krakow holiday photos. Smile guaranteed!</p>

        </div>

    </section>


    <!-- Pricing Packages -->

    <section class="pricing-section" id="packages">

        <div class="section-header">

            <h2>Select Your Driving Package</h2>

            <p>Choose the duration that best fits your Krakow adventure itinerary</p>

        </div>


        <div class="pricing-grid">

            

            <!-- 2h Package -->

            <div class="package-card popular">

                <div class="popular-badge">Most Popular</div>

                <div class="package-header">

                    <h3>Express City Sightseeing</h3>

                    <span class="duration"><i class="fa-regular fa-clock"></i> 2 Hours Rental</span>

                    <div class="price-tag">350 PLN <span>/ ~€80</span></div>

                </div>

                <ul class="package-features">

                    <li><i class="fa-solid fa-check"></i> Perfect for Kazimierz & Podgórze</li>

                    <li><i class="fa-solid fa-check"></i> Fuel included</li>

                    <li><i class="fa-solid fa-check"></i> Unlimited City Kilometers</li>

                    <li><i class="fa-solid fa-check"></i> Quick 5-min Driving Briefing</li>

                </ul>

                <a href="#book" class="btn-select">Choose 2 Hours</a>

            </div>


            <!-- 4h Package -->

            <div class="package-card">

                <div class="package-header">

                    <h3>Half-Day Explorer</h3>

                    <span class="duration"><i class="fa-regular fa-clock"></i> 4 Hours Rental</span>

                    <div class="price-tag">590 PLN <span>/ ~€135</span></div>

                </div>

                <ul class="package-features">

                    <li><i class="fa-solid fa-check"></i> Kazimierz + Nowa Huta Combo</li>

                    <li><i class="fa-solid fa-check"></i> Time for lunch & coffee stops</li>

                    <li><i class="fa-solid fa-check"></i> Fuel included</li>

                    <li><i class="fa-solid fa-check"></i> Max 80 km limit</li>

                </ul>

                <a href="#book" class="btn-select">Choose 4 Hours</a>

            </div>


            <!-- 12h Package -->

            <div class="package-card">

                <div class="package-header">

                    <h3>Full-Day Freedom</h3>

                    <span class="duration"><i class="fa-regular fa-clock"></i> 12 Hours Rental</span>

                    <div class="price-tag">990 PLN <span>/ ~€230</span></div>

                </div>

                <ul class="package-features">

                    <li><i class="fa-solid fa-check"></i> Countryside Road-Trip & Mounds</li>

                    <li><i class="fa-solid fa-check"></i> Full day car access (8 AM - 8 PM)</li>

                    <li><i class="fa-solid fa-check"></i> Max 200 km limit included</li>

                    <li><i class="fa-solid fa-check"></i> Full-to-Full Fuel Policy</li>

                </ul>

                <a href="#book" class="btn-select">Choose 12 Hours</a>

            </div>


        </div>

    </section>


    <!-- Booking Form -->

    <section class="booking-section" id="book">

        <div class="booking-container">

            <div class="section-header" style="margin-bottom: 2rem;">

                <h2>Book Your Experience</h2>

                <p>Reserve your vintage Fiat 126p in under 2 minutes</p>

            </div>

            <form class="booking-form">

                <div class="form-group">

                    <label for="name">Full Name</label>

                    <input type="text" id="name" placeholder="John Doe" required>

                </div>

                <div class="form-group">

                    <label for="email">Email Address</label>

                    <input type="email" id="email" placeholder="john@example.com" required>

                </div>

                <div class="form-group">

                    <label for="date">Preferred Date</label>

                    <input type="date" id="date" required>

                </div>

                <div class="form-group">

                    <label for="package">Package Duration</label>

                    <select id="package" required>

                        <option value="2h">Express City Sightseeing (2 Hours - 350 PLN)</option>

                        <option value="4h">Half-Day Explorer (4 Hours - 590 PLN)</option>

                        <option value="12h">Full-Day Freedom (12 Hours - 990 PLN)</option>

                    </select>

                </div>

                <div class="form-group full">

                    <label for="notes">Special Notes or Questions</label>

                    <textarea id="notes" rows="3" placeholder="Tell us if you have experience driving stick shift or any specific requests..."></textarea>

                </div>

                <button type="submit" class="btn-submit">Request Instant Booking</button>

            </form>

        </div>

    </section>


    <!-- FAQ Section -->

    <section class="faq-section">

        <div class="section-header">

            <h2>Frequently Asked Questions</h2>

        </div>

        <div class="faq-item">

            <h4>Can I drive if I only have an automatic driver's license?</h4>

            <p>Unfortunately, no. The Fiat 126p has a classic 4-speed manual transmission with non-synchronized gears. Drivers must be confident driving stick shift.</p>

        </div>

        <div class="faq-item">

            <h4>What documents do I need to bring?</h4>

            <p>You need a valid EU Driver's License or an International Driving Permit (IDP) along with your Passport or National ID.</p>

        </div>

        <div class="faq-item">

            <h4>Is a security deposit required?</h4>

            <p>Yes, a standard refundable security deposit (500 PLN for 2h/4h tours, 1000 PLN for 12h rentals) is pre-authorized on your card or held in cash during the rental.</p>

        </div>

    </section>


    <!-- Footer -->

    <footer>

        <p>&copy; 2026 Maluchem.pl – Self-Drive Krakow Experience. All rights reserved.</p>

        <p>Designed for vintage automotive enthusiasts exploring Krakow.</p>

    </footer>


</body>

</html>