<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>
        Globalmediapost.com    </title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

        :root {
            --primary-color: #1A3636;
            --secondary-color: #405D72;
            --accent-color: #D6BD98;
            --background-color: #F7FBFC;
            --text-color: #1A3636;
            --transition-speed: 0.6s;
            --border-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'Playfair+Display', serif;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: transparent;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            height: 70px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        /* Layout with Right Sidebar Mechanism */
        .wrapper {
            display: flex;
            flex-direction: row;
        }

        .container {
            flex-grow: 1;
            width: calc(100% - 60px);
        }

        .right-sidebar-element {
            width: 60px;
            min-height: 100vh;
            background: var(--primary-color);
            position: fixed;
            right: 0;
            top: 0;
            z-index: 99;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding-bottom: 50px;
        }

        .sidebar-text {
            writing-mode: vertical-rl;
            color: var(--accent-color);
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            opacity: 0.5;
            margin-bottom: 20px;
        }

        /* Sections */
        section {
            padding: 100px 10%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-header .line {
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }

        /* About & Services */
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .card {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border-bottom: 4px solid transparent;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .bg-image {
            width: 100%;
            height: 450px;
            border-radius: var(--border-radius);
            object-fit: cover;
            transition: transform 1s ease;
        }

        .img-wrapper {
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .img-wrapper:hover .bg-image {
            transform: scale(1.05);
        }

        /* Statistics */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .stat-box p {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        .chart-container {
            margin-top: 80px;
            height: 300px;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            background: #fff;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .bar {
            width: 40px;
            background: var(--secondary-color);
            border-radius: 5px 5px 0 0;
            height: 0;
            transition: height 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .bar::before {
            content: attr(data-label);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        /* Reviews */
        .reviews-container {
            display: flex;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .review-track {
            display: flex;
            gap: 30px;
            animation: scroll-reviews 40s linear infinite;
        }

        .review-card {
            min-width: 400px;
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .rating {
            color: #FFD700;
            margin-bottom: 15px;
        }

        @keyframes scroll-reviews {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Contact & Forms */
        .form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: white;
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        input,
        textarea {
            padding: 15px 20px;
            border: 1px solid #E1E1E1;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            background: #F9F9F9;
            transition: border-color 0.3s ease;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            background: white;
        }

        button {
            padding: 18px 35px;
            background: var(--primary-color);
            color: var(--accent-color);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        button:hover {
            background: var(--secondary-color);
            transform: scale(1.02);
        }

        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        /* Policies */
        .policy-box {
            background: white;
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            font-size: 0.95rem;
            color: #555;
            max-height: 500px;
            overflow-y: auto;
        }

        .policy-box h4 {
            margin-top: 25px;
            color: var(--primary-color);
        }

        footer {
            padding: 50px 10%;
            text-align: center;
            font-size: 0.85rem;
            color: #999;
            border-top: 1px solid #EEE;
        }

        @media (max-width: 968px) {
            .grid {
                grid-template-columns: 1fr;
            }

            .container {
                width: 100%;
            }

            .right-sidebar-element {
                display: none;
            }

            nav {
                justify-content: space-between;
                padding: 0 5%;
            }

            .nav-links {
                display: none;
            }

            /* Simplified for mobile in one-shot */
        }
    </style>
</head>

<body>

    <nav id="navbar">
        <ul class="nav-links">
            <li><a href="#about">ABOUT</a></li>
            <li><a href="#services">SERVICES</a></li>
            <li><a href="#reviews">REVIEWS</a></li>
            <li><a href="#statistics">STATISTICS</a></li>
            <li><a href="#privacy-policy">PRIVACY POLICY</a></li>
            <li><a href="#disclaimer">DISCLAIMER</a></li>
            <li><a href="#contact">CONTACT</a></li>
            <li><a href="#unsubscribe">UNSUBSCRIBE</a></li>
        </ul>
    </nav>

    <div class="wrapper">
        <div class="container">

            <!-- About Section -->
            <section id="about">
                <div class="section-header">
                    <h2>Redefining Work. Anywhere.</h2>
                    <div class="line"></div>
                </div>
                <div class="grid">
                    <div class="content">
                        <h3>Escape the Routine, Enter the Future</h3>
                        <p>Global Nomad Retreats is the world's most exclusive network of high-performance work-life
                            sanctuaries. We provide the infrastructure of a cutting-edge tech hub with the soul of a
                            five-star Mediterranean villa. Our spaces are curated for the visionary, the developer, and
                            the creator who demands peak productivity without sacrificing peak living.</p>
                        <p>From private high-speed satellite arrays to ergonomic outdoor amphitheatres, we've thought of
                            every detail to ensure your work feels like a celebration of freedom.</p>
                        <button onclick="document.getElementById('contact').scrollIntoView()">Join the Network</button>
                    </div>
                    <div class="img-wrapper stagger-reveal">
                        <img src="assets/hero_nomad.jpg" class="bg-image"
                            alt="A stunning, high-end tropical outdoor workspace at a luxury digital nomad retreat. A sleek laptop sits on a minimalist reclaimed wood desk overlooking a turquoise ocean at sunset. Nearby, a fresh coconut with a metal straw. No people, no women. Sophisticated, premium, peaceful, blurred background focus. 8k resolution.">
                    </div>
                </div>
            </section>

            <!-- Services Section -->
            <section id="services">
                <div class="section-header">
                    <h2>Premium Infrastructure</h2>
                    <div class="line"></div>
                </div>
                <div class="grid">
                    <div class="img-wrapper stagger-reveal">
                        <img src="assets/coliving.jpg" class="bg-image"
                            alt="Luxury co-living space with high ceilings, industrial pipes, and vertical indoor gardens. Huge floor-to-ceiling windows showing a misty mountain view. Minimalist design, sustainable materials, leather armchairs, and smart lighting. No people, no women. Warm and professional atmosphere. Photorealistic. 8k.">
                    </div>
                    <div class="content">
                        <div class="service-cards">
                            <div class="card">
                                <h3>Zero-Latency Sanctuary</h3>
                                <p>Dedicated enterprise-grade fiber optics and fail-safe Starlink redundancy at every
                                    location.</p>
                            </div>
                            <div class="card">
                                <h3>Curated Community</h3>
                                <p>Monthly matchmaking with world-class engineers, founders, and creative directors.</p>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="service-cards">
                    <div class="card">
                        <h3>Bio-Hacking Stations</h3>
                        <p>On-site wellness tech, including standing desks, ergonomic seating, and circadian-rhythm
                            lighting.</p>
                    </div>
                    <div class="card">
                        <h3>Concierge Operation</h3>
                        <p>A 24/7 dedicated support team handling your logistics, from visa assistance to local
                            transport.</p>
                    </div>
                </div>
            </section>

            <!-- Reviews -->
            <section id="reviews">
                <div class="section-header">
                    <h2>Global Voices</h2>
                    <div class="line"></div>
                </div>
                <div class="reviews-container">
                    <div class="review-track">
                        <div class="review-card">
                            <div class="rating">★★★★★</div>
                            <p>"The work-life balance at the Bali Retreat was transformative. I shipped three major
                                features while watching the sunrise every morning. Seamless."</p>
                            <strong>Marcus Thorne, Senior Architect</strong>
                        </div>
                        <div class="review-card">
                            <div class="rating">★★★★★</div>
                            <p>"I've never seen infrastructure this reliable in a remote location. The community is
                                high-level and incredibly welcoming. Highly recommended."</p>
                            <strong>Julian Vasse, CEO @ TechFlow</strong>
                        </div>
                        <div class="review-card">
                            <div class="rating">★★★★★</div>
                            <p>"Finally, a retreat that understands we actually need to WORK. The private offices are
                                sound-isolated and the coffee is world-class."</p>
                            <strong>Derek Stein, Creative Lead</strong>
                        </div>
                        <!-- Repeat for infinite scroll effect in CSS -->
                        <div class="review-card">
                            <div class="rating">★★★★★</div>
                            <p>"The work-life balance at the Bali Retreat was transformative. I shipped three major
                                features while watching the sunrise every morning. Seamless."</p>
                            <strong>Marcus Thorne, Senior Architect</strong>
                        </div>
                        <div class="review-card">
                            <div class="rating">★★★★★</div>
                            <p>"I've never seen infrastructure this reliable in a remote location. The community is
                                high-level and incredibly welcoming. Highly recommended."</p>
                            <strong>Julian Vasse, CEO @ TechFlow</strong>
                        </div>
                    </div>
                </div>
            </section>

            <!-- Statistics -->
            <section id="statistics">
                <div class="section-header">
                    <h2>Growth in Motion</h2>
                    <div class="line"></div>
                </div>
                <div class="stats-grid">
                    <div class="stat-box">
                        <h3 class="counter" data-target="1500">0</h3>
                        <p>Acitve Nomads</p>
                    </div>
                    <div class="stat-box">
                        <h3 class="counter" data-target="42">0</h3>
                        <p>Global Locations</p>
                    </div>
                    <div class="stat-box">
                        <h3 class="counter" data-target="99">0</h3>
                        <p>Uptime %</p>
                    </div>
                    <div class="stat-box">
                        <h3 class="counter" data-target="12">0</h3>
                        <p>Average ROI Boost %</p>
                    </div>
                </div>
                <div class="chart-container">
                    <div class="bar" style="--h: 60%;" data-label="ASIA"></div>
                    <div class="bar" style="--h: 85%;" data-label="EUROPE"></div>
                    <div class="bar" style="--h: 40%;" data-label="AFRICA"></div>
                    <div class="bar" style="--h: 70%;" data-label="AMERICAS"></div>
                    <div class="bar" style="--h: 55%;" data-label="OCEANIA"></div>
                </div>
            </section>

            <!-- Privacy Policy -->
            <section id="privacy-policy">
                <div class="section-header">
                    <h2>Privacy Policy</h2>
                    <div class="line"></div>
                </div>
                <div class="policy-box">
                    <p>This Privacy Policy explains our policy regarding the privacy of information supplied by users or
                        collected by us from users of this web site or from other third parties. Because we want to
                        build users' trust and confidence in our privacy practices, we want to disclose them to you.</p>

                    <p><b>Changes in this Privacy Statement</b></p>
                    <p>If we decide to change our privacy policy, we will post those changes to this privacy statement,
                        the home page, and other places we deem appropriate so that you are aware of what information we
                        collect, how we use it, and under what circumstances, if any, we disclose it.
                        We reserve the right to modify this privacy statement at any time, so please review it
                        frequently. If we make material changes to this policy, we will notify you here, by email, or by
                        means of a notice on our home page.</p>

                    <p><b>Registration Newsletter/ Frequency of Mailings</b></p>
                    <p>By registering to our newsletter, you are agreeing to receive our newsletters on a daily basis.
                        <b>
                            Globalmediapost.com                        </b> has the right to change frequency of delivery of its newsletters without notice.</p>

                    <p><b>Collection and Use of information</b></p>
                    <p>We respect your right to privacy. <b>
                            Globalmediapost.com                        </b> received your information from your submission to us or through one of our affiliates.
                        Globalmediapost.com is the owner of the information that you provided in any
                        registration process. Your email address and any other identifying information that you give us
                        will not be revealed to any third party, including any of the direct marketers who may use us to
                        pass offers to you.
                    </p>

                    <p>We use the information that you provided primarily to send you our newsletters. Moreover, the
                        information subscribers give us is sometimes used to send prizes, verify legal age, and to send
                        third-party mailings based on the interests that each individual subscriber has opted-in for. We
                        may also collect and report to third parties (such as affiliates, content and service providers,
                        and advertisers) aggregated information from our web site. For example, we may aggregate and
                        report to third parties that X people purchased a particular product during a month, or that Y%
                        of visitors to this web site are between the ages 25-34.</p>

                    <p>From time to time, we may provide you the opportunity to participate in contests or surveys on
                        our site. If you participate, we will request certain personally identifiable information from
                        you. Participation in these surveys or contests is completely voluntary and you, therefore, have
                        a choice whether or not to disclose this information. The requested information typically
                        includes contact information (such as name and shipping address), and demographic information
                        (such as zip code).</p>

                    <p>As is true of most web sites, we also gather certain information automatically and store it in
                        log files. This information includes internet protocol (IP) addresses, browser type, internet
                        service provider (ISP), referring/exit pages, operating system, date/time stamp, and click
                        stream data. We use this information, which does not identify individual users, to analyze
                        trends, to administer the site, to track users' movements around the site and to gather
                        demographic information about our user base as a whole. We do link this automatically-collected
                        data to personally identifiable information like IP addresses and email addresses. However, this
                        is solely for internal uses and used to verify appropriate registration methods.</p>

                    <p>Finally, <b>
                            Globalmediapost.com                        </b> may disclose subscriber information in response to subpoenas, court orders, and other legal
                        processes.</p>

                    <p><b>Children</b></p>
                    <p>We are committed to the safety of children and do not intend to collect personally identifiable
                        information from children under age 18. If you are under age 18, please ask your parent for
                        permission before sending any information to our site or anyone else online. Have your parent
                        contact us as indicated below in order to provide us with prior written consent. We will not
                        intentionally use personal information from or send marketing communications to children under
                        age 13 without prior parental consent.</p>

                    <p><b>Cookies</b></p>
                    <p>A cookie is a small text file that is stored on a user's computer for record-keeping purposes. We
                        do not use cookies on this site. This privacy statement covers the use of cookies by this site
                        only and does not cover the use of cookies by any advertisers.</p>

                    <p><b>Aggregate Information (non-personally identifiable)</b></p>
                    <p>We maintain the right to share aggregated demographic information about our subscriber base with
                        our partners and advertisers. This information does not identify individual subscribers. We do
                        not link aggregate user data with personally identifiable information.</p>

                    <p><b>Third-Party Links</b></p>
                    <p>For your convenience, our newsletter contains links to third-party web sites that are not owned
                        or controlled by us. We are not responsible for the privacy practices of these other web sites.
                        We encourage you to note when you follow links in our newsletters and to read the privacy
                        statements of these other web sites. We encourage you to be aware when you leave our newsletter
                        and to read the privacy statements of each and every web site that collects personally
                        identifiable information. This Privacy Policy applies solely to information collected by
                        Globalmediapost.com                    </p>

                    <p><b>Security</b></p>
                    <p>We use certain efforts to secure our web site. We will periodically review our security policies
                        and implement changes from time to time. However, we cannot and do not guarantee complete
                        security, as it does not exist on the Internet. If you have any questions about security on our
                        web site, you can send an email</p>

                    <p><b>Business Transitions</b></p>
                    <p>In the event <b>
                            Globalmediapost.com                        </b> goes through a business transition, such as a merger, acquisition by another company, or
                        sale of all or a portion of its assets, your personally identifiable information will likely be
                        among the assets transferred. You will be notified via prominent notice on our web site prior to
                        any such change in ownership or control of your personal information.</p>

                    <p><b>Choice/Opt-out</b></p>
                    <p>If you no longer wish to receive our newsletter and promotional communications, you may opt-out
                        of receiving them by following the instructions included in each newsletter or communication or
                        by emailing us</p>

                    <p><b>Acceptance of Terms</b></p>
                    <p>By subscribing to our newsletter, you agree to the Privacy Policy. If you do not agree to this
                        policy, please do not subscribe to our newsletters. We reserve the right, at our discretion, to
                        change, modify, add, or remove portions of this policy at any time. All Privacy Policy changes
                        will take effect immediately upon their posting on the site. Please check this page periodically
                        for changes.</p>

                    <p><b>Contact Us</b></p>
                    <p>If you have any questions or suggestions regarding our privacy policy, please contact us</p>
                </div>
            </section>

            <!-- Disclaimer -->
            <section id="disclaimer">
                <div class="section-header">
                    <h2>Disclaimer</h2>
                    <div class="line"></div>
                </div>
                <div class="policy-box">
                    <p><b>
                            Globalmediapost.com                        </b> serves as an informational service only. The inclusion of a link on this web site does not
                        imply
                        Globalmediapost.com endorsement of the linked site nor does
                        Globalmediapost.com accept any responsibility for the content, or the use, of such
                        site.
                    </p>

                    <p> <b>
                            Globalmediapost.com                        </b> is not responsible for the offers or goods supplied by vendors. <b>
                            Globalmediapost.com                        </b> has no control over the legality of any coupons or other offers made by vendors, the
                        ability of any of the vendors to complete the sales or transactions in accordance with the
                        offers, or the quality of the goods offered by the vendors. In the event you have a dispute with
                        a vendor in any way relating to this site or the use
                        of information from this site, you agree to waive and release <b>
                            Globalmediapost.com                        </b> from any and all claims, demands, actions, damages (actual and consequential), losses,
                        costs and expenses of every kind and nature, known and unknown, disclosed and undisclosed
                        relating to that dispute.</p>

                    <p>It is your responsibility to verify independently that any merchant you are doing business with
                        is legitimate and reputable. Before participating in any specific offers and/or promotions,
                        please analyze the details and conditions of the offer including the fine print. Any access to
                        or use of this site shall be deemed your agreement to and approval of all the above terms and
                        conditions.</p>

                    <p><b>
                            Globalmediapost.com                        </b> and the <b>
                            Globalmediapost.com                        </b> service, and all materials and information contained on it, and any services or products
                        provided through it are provided "AS IS" without warranties of any kind, express or implied,
                        INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTY OF MERCHANTABILITY, fitness for a particular
                        purpose, expectation of privacy (unless discussed on our Privacy Policy) or non-infringement.
                        any warranty for information.</p>

                    <p><b>
                            Globalmediapost.com                        </b> is not responsible for any damages, including without limitation, any special, indirect,
                        incidental or consequential damages, that may arise from any use of, inability to use, or
                        reliance on the site and/or the materials contained on the site whether the materials contained
                        on the site are provided by the <b>
                            Globalmediapost.com                        </b>, or a third party.</p>

                    <p>The above disclaimer of liability applies to any damages or injury caused by any error, omission,
                        deletion, defect, interruption, failure of performance, delay in operation or transmission,
                        computer virus, communication line failure, theft or destruction or unauthorized access to,
                        alteration of, or use of record, whether for breach of contract, negligence, tortious behavior,
                        or under any other cause of action.</p>

                    <p>Information on this web site may contain technical inaccuracies or typographical errors. <b>
                            Globalmediapost.com                        </b> may make updates, improvements and/or changes in the products and/or information described
                        at any time without notice. <b>
                            Globalmediapost.com                        </b> does not guarantee the accuracy or completeness of the information contained in this site.
                        This site contains links to sites which are not maintained by <b>
                            Globalmediapost.com                        </b> .
                        We are not responsible and have no control over the content of those sites nor do we guarantee
                        the content of such sites. All products, services, and deals mentioned by this site are provided
                        by third parties and are subject to change without notice and are subject to restrictions,
                        limitations, availability, conditions, and qualifications.</p>
                </div>
            </section>

            <!-- Contact -->
            <section id="contact">
                <div class="section-header">
                    <h2>Secure Your Sanctuary</h2>
                    <div class="line"></div>
                </div>
                <div class="form-container">
                    <form class="form" id="contact-form">
                        <div class="input-group">
                            <label>Full Name</label>
                            <input type="text" id="contact_name" required>
                        </div>
                        <div class="input-group">
                            <label>Corporate Email</label>
                            <input type="email" id="contact_email" required>
                        </div>
                        <div class="input-group">
                            <label>Your Project Vision</label>
                            <textarea id="contact_msg" rows="5" required></textarea>
                        </div>
                        <button type="submit">Initiate Protocol</button>
                    </form>
                </div>
            </section>

            <!-- Unsubscribe -->
            <section id="unsubscribe">
                <div class="section-header">
                    <h2>Unsubscribe</h2>
                    <div class="line"></div>
                </div>
                <div class="form-container">
                    <form class="form" id="unsubscribe-form" method="POST" action="">
                        <div class="messages">
                                                    </div>
                        <p style="text-align: center; margin-bottom: 20px;">Enter your email to opt-out from our daily
                            mission logs and community updates.</p>
                        <div class="input-group">
                            <input type="email" name="email" placeholder="nomad@example.com" required
                                value="">
                        </div>
                        <button type="submit">Terminate Connection</button>
                    </form>
                </div>
            </section>

            <footer>
                &copy;
                2026                Globalmediapost.com All Rights Reserved.
            </footer>

        </div> <!-- End Container -->

        <div class="right-sidebar-element">
            <div class="sidebar-text">GLOBAL NOMAD PROTOCOL</div>
            <div class="sidebar-text">2026 EDITION</div>
        </div>

    </div> <!-- End Wrapper -->

    <script>
        // Navigation Scroll Effect
        window.addEventListener('scroll', () => {
            const nav = document.getElementById('navbar');
            if (window.scrollY > 100) {
                nav.classList.add('scrolled');
            } else {
                nav.classList.remove('scrolled');
            }

            // Scroll Spying
            const sections = document.querySelectorAll('section');
            const navLinks = document.querySelectorAll('.nav-links li a');

            let current = '';
            sections.forEach(section => {
                const sectionTop = section.offsetTop;
                if (pageYOffset >= sectionTop - 150) {
                    current = section.getAttribute('id');
                }
            });

            navLinks.forEach(link => {
                link.classList.remove('active');
                if (link.getAttribute('href').includes(current)) {
                    link.classList.add('active');
                }
            });
        });

        // Intersection Observer for Section Reveal
        const observerOptions = {
            threshold: 0.1
        };

        const revealObserver = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.classList.add('visible');

                    // Specific logic for statistics count-up
                    if (entry.target.id === 'statistics') {
                        startCounters();
                        animateChart();
                    }
                }
            });
        }, observerOptions);

        document.querySelectorAll('section').forEach(section => {
            revealObserver.observe(section);
        });

        // Counter Animation
        function startCounters() {
            const counters = document.querySelectorAll('.counter');
            counters.forEach(counter => {
                const target = +counter.getAttribute('data-target');
                const updateCount = () => {
                    const count = +counter.innerText;
                    const speed = target / 100;
                    if (count < target) {
                        counter.innerText = Math.ceil(count + speed);
                        setTimeout(updateCount, 20);
                    } else {
                        counter.innerText = target;
                    }
                }
                updateCount();
            });
        }

        // Chart Animation
        function animateChart() {
            const bars = document.querySelectorAll('.bar');
            bars.forEach(bar => {
                const height = bar.getAttribute('style').split('--h: ')[1].split(';')[0];
                bar.style.height = height;
            });
        }

        // Form Validation
        document.getElementById('contact-form').addEventListener('submit', function (e) {
            e.preventDefault();
            const name = document.getElementById('contact_name').value;
            const email = document.getElementById('contact_email').value;

            if (name.length < 2) {
                alert("Please enter a valid name.");
                return;
            }
            if (!email.includes('@')) {
                alert("Please enter a valid email.");
                return;
            }

            this.innerHTML = '<div class="alert">Transmission Successful. Our concierge will contact you within 4 hours.</div>';
        });

        window.addEventListener('load', function () {
            const section = window.location.pathname.replace('/', '');
            if (section) {
                const el = document.getElementById(section);
                if (el) el.scrollIntoView({ behavior: 'smooth' });
            }
        });
    </script>
</body>

</html>