@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B780FE;
    --secondary-color: #E1FF8D;
    --background-color: #f5f5f5;
    --text-color: #000;
    --white: #ffffff;
    --black: #000000;
    --container-padding: 2rem 5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: var(--black);
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--container-padding);
    text-transform: uppercase;
    font-size: .8rem;
    position: relative;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

    nav {
        flex: 1;
        ul {
            list-style: none;
            text-decoration: none;
            display: flex;
            gap: 1rem;
    
            li {
                a {
                    text-decoration: none;
                    color: var(--secondary-color);
                }
                
                .login-btn {
                    color: var(--secondary-color) !important;
                    display: none;
                }
            }
        }
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        img {
            width: 200px;
            aspect-ratio: 1/1;
        }
    }

    .menu {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        ul {
            list-style: none;
            text-decoration: none;
            display: flex;
            gap: 1rem;
            align-items: center;
            li {
                a {
                    text-decoration: none;
                    color: var(--secondary-color);
                }
                
                .login-btn {
                    color: var(--secondary-color) !important;
                }
            }
        }
    }

    .book-ride-nav-btn {
        background-color: var(--primary-color);
        color: var(--white) !important;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        font-weight: 600 !important;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .book-ride-nav-btn:hover {
        background-color: var(--secondary-color);
        transform: scale(1.05);
    }



.container {
    /* min-height: calc(100vh - 100px); */
    margin-top: 0;
}

/* Footer Base Styles */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 5rem;
    display: flex;
 
    justify-content: space-between;
    align-items: center;

}
@media (max-width: 768px) {
    footer {
        flex-direction: column;
    }
}

.footer-logo-section {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    position: relative;
}

.footer-logo-section .footer-logo {
    display: flex;
    justify-content: center;
}

/* Footer Logo */
.footer-logo-section img  {
    width: 300px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

/* Social Media Icons */
footer .socials {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
}

/* Footer Links */
footer div:nth-child(2) {
    grid-area: links;
    display: flex;
    justify-content: center;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

footer ul li a {
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-color);
}

/* Free Friday Section */
footer .free-friday {
    grid-area: friday;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

footer .free-friday div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer .free-friday h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 0.8;
    margin: 0;
    color: var(--text-color);
}

footer .free-friday button {
    background-color: var(--primary-color);
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(-90deg);
    white-space: nowrap;
    transition: all 0.3s ease;
}

footer .free-friday button:hover {
    background-color: var(--text-color);
    transform: rotate(-90deg) scale(1.05);
}

.socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.socials a:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.socials i {
    color: white;
    font-size: 1.2rem;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-color: #000;
    margin-top: 0;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;  
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-content button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.book-ride-btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--secondary-color);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-ride-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-color);
}

.purple-section {
    background-color: rgba(183, 128, 254, 0.3);
    padding: 4rem 5rem;
    color: var(--black);
    margin: 0 0 2rem 0;
}

.purple-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

/* Desktop: Override mobile changes */
@media (min-width: 769px) {
    .purple-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .purple-content-top {
        display: contents;
    }
    
    .purple-content .text-content {
        text-align: left;
        align-self: flex-end;
        margin-bottom: 5rem;
        padding-left: 0;
        margin-right: 0;
        flex: none;
    }
    
    .purple-content .logo-spin {
        flex-shrink: 0;
        margin-left: -2rem;
        margin-right: 0;
    }
    
    .purple-content .rhythm-text {
        max-width: 300px;
        text-align: center;
        align-self: flex-end;
        margin-bottom: 5rem;
        margin-top: 0;
        padding: 0;
    }
}

.text-content {
    text-align: left;
    align-self: flex-end;
    margin-bottom: 5rem;
}

.text-content h2 {
    font-size: 5rem;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.logo-spin {
    flex-shrink: 0;
    margin-left: -2rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-spin img {
    width: 500px;
    height: auto;
    animation: spin 20s linear infinite;
}

.rhythm-text {
    max-width: 300px;
    text-align: center;
    align-self: flex-end;
    margin-bottom: 5rem;
}

.rhythm-text p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
    color: var(--black);
    font-style: italic;
}

.rhythm-text em {
    font-style: italic;
    font-weight: 500;
}

.rocycle-section {
    padding: 2rem 0;
    margin-top: -7.5%;
    position: relative;
    z-index: 2;
}

.rocycle-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.rocycle-item {
    flex: 1;
    max-width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.rocycle-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.rocycle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.7);
}

.rocycle-item:hover img {
    transform: scale(1.1);
}

.rocycle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    text-align: center;
    pointer-events: none;
    width: 90%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    background: linear-gradient(135deg, var(--secondary-color), #f0ff7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rocycle-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(183, 128, 254, 0.8) 100%);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    z-index: 3;
}

.rocycle-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(225, 255, 141, 0.1) 50%, 
        transparent 70%);
    pointer-events: none;
}

.rocycle-dropdown p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.dropdown-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(225, 255, 141, 0.1);
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.dropdown-link::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: left 0.5s;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    background: var(--secondary-color);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 255, 141, 0.3);
}

.rocycle-item:hover .rocycle-text {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.rocycle-item:hover .rocycle-dropdown {
    opacity: 1;
    visibility: visible;
}

.rocycle-item:hover .rocycle-dropdown p,
.rocycle-item:hover .dropdown-link {
    transform: translateY(0);
}

.rocycle-bottom-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.rocycle-bottom-center p {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black, #222);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-weight: 200;
}

.yellow-btn {
    background: var(--secondary-color);
    color: #222;
    border: none;
    border-radius: 24px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: regular;
    cursor: pointer;
    transition: background 0.2s;
}

.yellow-btn:hover {
    background: var(--primary-color);
}

.purple-boxes-section {
    padding: 4rem 5rem;
    background-color: var(--white);
}

.purple-boxes-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-family: 'helvetica', sans-serif;
}

.purple-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.purple-box {
    background-color: var(--primary-color);
    padding: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.purple-box:hover {
    transform: translateY(-5px);
}

.purple-box .box-icon {
    font-size: 32px;
    min-width: 40px;
    text-align: center;
}

.purple-box p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    font-weight: 100;
}

.home-photos-section {
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.home-photo-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 1200px;

    width: 100%;
    padding: 4rem 0rem 2rem 5rem;
    box-sizing: border-box;
}

.home-photo {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    object-fit: cover;
    background: #eee;
    align-self: flex-end;
}

.home-photo:first-child {
    max-width: 300px;
}

.home-photo2 {
    max-width: 400px;
    margin-left: 2rem;
}

.home-photo-container {
    position: relative;
    display: inline-block;
}

.home-photo-container:first-child {
    max-width: 250px;
}

.home-photo-container:last-child {
    max-width: 700px;
    margin-left: 2rem;
}

.photo-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.photo-logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    display: block;
    margin: 0;
}

.spin-logo img {
    width: 280px;
    display: block;
    margin: 0;
}


.hoorn-section {
    padding: 4rem 5rem;
    background-color: var(--white);
}

.hoorn-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hoorn-image {
}

.hoorn-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hoorn-text {
    flex: 1;
}

.hoorn-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hoorn-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hoorn-text .yellow-btn {
    margin-top: 2rem;
}

/* Book a Ride Page Styles */
.booking-hero {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 5rem;
    text-align: center;
}

.booking-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-section {
    padding: 4rem 5rem;
    background-color: var(--white);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-main {
    text-align: left;
}

.booking-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.booking-main p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.ride-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ride-type {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.ride-type h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.ride-type p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.duration {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    width: 100%;
    overflow: hidden;
}

/* BSport widget responsive styling */
.booking-widget #bsport-widget-booking {
    width: 100%;
    height: 100%;
}

.booking-widget iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 500px !important;
}

.booking-tips {
    padding: 4rem 5rem;
    background-color: var(--white);
    border-top: 1px solid #e9ecef;
}

.booking-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-button-container {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
    color: var(--black);
    transform: scale(1.05);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tip {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tip i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 600;
}

.tip p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

@media (max-width: 768px) {
    /* Header Mobile */
    header {
        padding: 1rem;
        position: relative;
    }
    
    .hamburger {
        display: flex;
        order: 1;
    }
    
    header nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 100;
    }
    
    header nav.active {
        left: 0;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    header nav ul li a {
        font-size: 1.5rem;
        color: var(--secondary-color);
    }
    
    header nav ul li .login-btn {
        display: block !important;
        color: var(--secondary-color) !important;
    }
    
    header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
    }
    
    header .logo img {
        width: 150px;
    }
    
    header .menu {
        order: 3;
        display: flex;
        justify-content: flex-end;
    }
    
    header .menu ul {
        gap: 0.5rem;
    }
    
    /* Hide contact button on mobile */
    header .menu .contact-trigger {
        display: none;
    }
    
    /* Hide login button in right menu on mobile */
    header .menu .login-btn {
        display: none !important;
    }
    
    .book-ride-nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        text-decoration: none;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 60vh;
    }
    
    .book-ride-btn {
        bottom: 1rem;
        left: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Purple Section Mobile */
    .purple-section {
        padding: 1.5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .purple-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
        overflow: hidden;
    }
    
    .purple-content-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .purple-content .logo-spin {
        flex-shrink: 0;
        margin-left: -2rem;
        margin-right: 0;
    }
    
    .purple-content .text-content {
        flex: 1;
        align-self: center;
        margin-bottom: 0;
        text-align: left;
        margin-right: -2rem;
        padding-left: 1rem;
    }
    
    .purple-content .rhythm-text {
        text-align: left;
        margin-top: 1rem;
        margin-bottom: 0;
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }
    
    .text-content h2 {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .logo-spin img {
        width: 220px;
    }
    
    .rhythm-text p {
        font-size: 1rem;
    }
    
    /* Rocycle Section Mobile */
    .rocycle-section {
        padding: 2rem 1rem;
    }
    
    .rocycle-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .rocycle-item {
        max-width: 100%;
        height: 250px;
        border-radius: 8px;
    }
    
    .rocycle-item img {
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }
    
    .rocycle-item:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .rocycle-text {
        font-size: 1.4rem;
    }
    
    .rocycle-dropdown {
        padding: 1.5rem 1rem;
    }
    
    .rocycle-dropdown p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .dropdown-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .rocycle-bottom-center {
        padding: 2rem 1rem;
    }
    
    .rocycle-bottom-center p {
        font-size: 1.1rem;
    }
    
    /* Purple Boxes Section Mobile */
    .purple-boxes-section {
        padding: 2rem 1rem;
    }
    
    .purple-boxes-section h2 {
        font-size: 1.8rem;
    }
    
    .purple-boxes-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .purple-box {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .purple-box .box-icon {
        font-size: 2rem;
    }
    
    /* Home Photos Section Mobile */
    .home-photo-wrapper {
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .home-photo:first-child,
    .home-photo:last-child {
        max-width: 100%;
    }
    
    .home-photo-container:first-child,
    .home-photo-container:last-child {
        max-width: 100%;
        margin-left: 0;
    }
    
    .photo-logo img {
        width: 140px;
    }
    
    .spin-logo img {
        width: 105px;
    }
    
    /* Hoorn Section Mobile */
    .hoorn-section {
        padding: 2rem 1rem;
    }
    
    .hoorn-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hoorn-text h2 {
        font-size: 2rem;
    }
    
    .hoorn-text p {
        font-size: 1rem;
    }
    
         /* Mobile Footer Layout */
    footer {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
            "logo-section"
            "links" 
            "friday";
        gap: 2.5rem;
        padding: 2.5rem 1.5rem;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .footer-logo-section {
        grid-area: logo-section;
        align-items: center;
    }
    
    footer .logo img {
        height: 60px;
        max-width: 150px;
    }
    
    footer div:nth-child(2) {
        grid-area: links;
        justify-content: center;
    }
    
    footer .free-friday {
        grid-area: friday;
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
    }
    
    footer .free-friday div {
        align-items: center;
    }
    
    footer .free-friday h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    footer .free-friday button {
        transform: rotate(0deg);
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    footer .socials {
        justify-content: center;
    }
    
    /* Booking Section Mobile */
    .booking-hero,
    .booking-section,
    .booking-tips {
        padding: 2rem 1rem;
    }
    
    .booking-content h1 {
        font-size: 2rem;
    }
    
    .booking-content p {
        font-size: 1rem;
    }
    
    .booking-main h2 {
        font-size: 2rem;
    }
    
    .booking-tips h2 {
        font-size: 2rem;
    }
    
    .booking-widget {
        min-height: 400px;
        padding: 0.5rem;
        margin: 1rem 0;
        width: 100%;
        border-radius: 0.5rem;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ride-types {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .ride-type {
        padding: 1rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* BSport Widget Styling */
#bsport-widget-nav button,
#bsport-widget-menu button,
.bsport-widget button {
    background-color: var(--secondary-color) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

#bsport-widget-nav button:hover,
#bsport-widget-menu button:hover,
.bsport-widget button:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    transform: scale(1.05) !important;
}

/* Mobile specific styling */
@media (max-width: 768px) {
    #bsport-widget-menu {
        display: none !important;
    }
    
    #bsport-widget-nav button {
        font-size: 1.2rem !important;
        padding: 0.75rem 1.5rem !important;
    }
}

/* Desktop specific styling */
@media (min-width: 769px) {
    #bsport-widget-nav {
        display: none !important;
    }
}

/* Hide logout button/icon - specific MUI button targeting */
#bsport-widget-authentication__logout_button,
button[id*="logout_button"],
button[id*="logout-button"],
.MuiButton-root.MuiButton-outlined[id*="logout"],
#bsport-widget-nav #bsport-widget-authentication__logout_button,
#bsport-widget-menu #bsport-widget-authentication__logout_button {
    display: none !important;
    visibility: hidden !important;
}

/* Only hide icons/svgs, not buttons */
#bsport-widget-nav svg:not(.login-icon),
#bsport-widget-menu svg:not(.login-icon),
#bsport-widget-nav .icon:not(.login-icon),
#bsport-widget-menu .icon:not(.login-icon) {
    display: none !important;
}

/* Extra small screens */
@media (max-width: 480px) {
    .booking-widget {
        min-height: 350px;
        padding: 0.25rem;
        margin: 0.5rem 0;
        border-radius: 0.25rem;
    }
    
    .booking-main h2 {
        font-size: 1.5rem;
    }
    
    .booking-main p {
        font-size: 0.9rem;
    }
    
    .booking-hero,
    .booking-section,
    .booking-tips {
        padding: 1.5rem 0.5rem;
    }
    
    /* Lotte Section Mobile */
    .lotte-section {
        padding: 2rem 1rem;
    }
    
    .lotte-section-title h2 {
        font-size: 2rem;
    }
    
    .lotte-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .lotte-image {
        flex: none;
        width: 100%;
    }
    
    .lotte-image img {
        width: 250px;
        height: 250px;
    }
    
    .lotte-tags {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
    
    .lotte-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        writing-mode: horizontal-tb;
        transform: none;
    }
    
    .lotte-tags-bottom {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .lotte-intro h2 {
        font-size: 2rem;
    }
    
    .lotte-story p {
        font-size: 1rem;
    }
    
    .lotte-cta {
        text-align: center;
    }
    
    .lotte-book-btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}
.lotte-section {
    padding: 4rem 5rem;
    background-color: rgba(183, 128, 254, 0.3);
    color: var(--black);
}

.lotte-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.lotte-section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 2px;
}

.lotte-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.lotte-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.lotte-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.lotte-tags {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.lotte-tag {
    padding: 0.3rem 0.6rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    min-width: 60px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.tag-main {
    background-color: var(--secondary-color);
    color: var(--black);
}

.lotte-tags-bottom {
    position: absolute;
    bottom: -20px;
    left: 0;
    display: flex;
    gap: 0.5rem;
    margin-left: 20px;
}

.tag-secondary {
    background-color: var(--secondary-color);
    color: var(--black);
    opacity: 0.9;
    writing-mode: horizontal-tb;
    transform: none;
}

.lotte-content {
    flex: 1;
    padding-top: 1rem;
}

.lotte-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}

.lotte-name {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 0.4rem;
    margin-left: 0.3rem;
    font-size: 0.9em;
}

.lotte-title {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.lotte-story {
    margin-bottom: 2rem;
}

.lotte-story p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.lotte-signature {
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-top: 1.5rem !important;
    color: var(--black);
}

.lotte-community {
    margin-bottom: 2.5rem;
}

.lotte-community p {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
}

.lotte-cta {
    text-align: right;
    margin-top: 2rem;
}

.lotte-book-btn {
    background: var(--secondary-color);
    color: #222;
    border: none;
    border-radius: 24px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: regular;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.lotte-book-btn:hover {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .lotte-section {
        padding: 2rem 1rem;
    }
    
    .lotte-section-title h2 {
        font-size: 2rem;
    }
    
    .lotte-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .lotte-image {
        flex: none;
        width: 100%;
    }
    
    .lotte-image img {
        width: 250px;
        height: 250px;
    }
    
    .lotte-tags {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
    
    .lotte-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        writing-mode: horizontal-tb;
        transform: none;
    }
    
    .lotte-tags-bottom {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .lotte-intro h2 {
        font-size: 2rem;
    }
    
    .lotte-story p {
        font-size: 1rem;
    }
    
    .lotte-cta {
        text-align: center;
    }
    
    .lotte-book-btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Roadmap Section Styles */
.get-to-know-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(225, 255, 141, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.get-to-know-title {
    text-align: center;
    margin-bottom: 4rem;
}

.get-to-know-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 1rem;
}

.roadmap-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    font-family: 'Roboto Mono', monospace;
    opacity: 0.8;
}

/* Desktop Roadmap */
.roadmap-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.roadmap-path {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1;
}

.roadmap-svg {
    width: 100%;
    height: 300px;
}

.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    min-height: 600px;
    align-items: start;
}

.roadmap-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap-step[data-step="1"] {
    margin-top: 50px;
}

.roadmap-step[data-step="2"] {
    margin-top: 0px;
}

.roadmap-step[data-step="3"] {
    margin-top: 100px;
}

.roadmap-step[data-step="4"] {
    margin-top: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(225, 255, 141, 0.4);
    border: 3px solid var(--white);
    z-index: 3;
    position: relative;
}

.step-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-image.app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.step-image.app-icon i {
    font-size: 4rem;
    color: var(--white);
}

.step-content {
    padding: 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Roboto Mono', monospace;
}

.step-btn {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
}

.step-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-btn {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Roadmap */
.mobile-roadmap {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-roadmap-steps {
    position: relative;
}

.mobile-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.mobile-step:last-child .mobile-step-connector {
    display: none;
}

.mobile-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
    position: relative;
}

.mobile-step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
    border: 2px solid var(--white);
    z-index: 2;
    position: relative;
}

.mobile-step-connector {
    width: 3px;
    height: 80px;
    background: var(--secondary-color);
    margin-top: 0.5rem;
    opacity: 0.6;
}

.mobile-step-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.mobile-step-card:hover {
    transform: translateY(-2px);
}

.mobile-step-image {
    height: 120px;
    overflow: hidden;
}

.mobile-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mobile-step-image.app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.mobile-step-image.app-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mobile-step-content {
    padding: 1rem;
}

.mobile-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
}

.mobile-step-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Roboto Mono', monospace;
}

.mobile-step-btn {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-step-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-download-btn {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-download-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Mobile App Download Button */
.mobile-app-download {
    display: none;
    margin-top: 1rem;
}

.mobile-download-highlight {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.mobile-download-highlight .app-store-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-download-highlight .app-store-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* App Download Section Styles */
.app-download-section {
    margin-top: 1rem;
    text-align: center;
    background: var(--secondary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.app-download-section .app-store-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.app-download-section .app-store-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Pricing Hero Buttons Container */
.pricing-hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .get-to-know-section {
        padding: 3rem 0;
    }
    
    .get-to-know-title h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .roadmap-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .roadmap-container {
        display: none;
    }
    
    .mobile-roadmap {
        display: block;
    }
    
    .mobile-app-download {
        display: block;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .roadmap-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .step-number {
        margin-bottom: 1.5rem;
    }
    
    .roadmap-path {
        display: none;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--white);
    color: var(--black);
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-container h2 {
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
}

.newsletter-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

#bsport-widget-12540 {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    .newsletter-container h2 {
        font-size: 2rem;
    }
    
    .newsletter-container p {
        font-size: 1rem;
    }
}




