:root {
    /* Colors */
    --color-bg: #000000;
    --color-bg-alt: #111111;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-red: #E63946;
    --color-red-hover: #c92a37;
    --color-blue: #1D3557;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Mappings */
    --color-primary: var(--color-blue);
    /* Buttons are now Blue */
    --color-primary-hover: #162a45;
    /* Darker blue */
    --color-accent: var(--color-red);

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Oswald', sans-serif;
    /* Unified font for the whole site */

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 4px;

    /* Pro Max: Neon & Glass */
    --glow-red: rgba(230, 57, 70, 0.6);
    --glow-blue: rgba(29, 53, 87, 0.6);
    --glass-surface: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg);
}

/* Custom Scrollbar (Pro Max) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-red), var(--color-blue));
    border-radius: 5px;
    border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-red-hover), var(--color-primary-hover));
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    /* Subtle Noise Texture for Premium Feel */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    /* Changed from white to text (dark) */
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Global replacements will handle this via regex/manual search in a real editor, 
   but since I need to use chunks, I will target specific classes I know use gold */

.text-gold {
    color: var(--color-primary);
}

.text-blue {
    color: var(--color-blue);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bold wording */
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Magnetic easing */
    border-radius: var(--border-radius);
    /* Rounded edges */
    min-height: 48px;
    /* Touch-friendly minimum */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine Effect for Buttons */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

.btn:active {
    transform: scale(0.96);
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.2);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.nav__link:hover {
    color: var(--color-primary);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.service-card__price {
    font-family: var(--font-heading);
    color: var(--color-blue);
    /* Blue Text */
    background-color: var(--color-white);
    /* White Bubble */
    font-size: 1.1rem;
    font-weight: 700;
    padding: 6px 16px;
    /* Larger pill */
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Floating badge look */
    display: inline-block;
}

.social-links a:hover {
    color: var(--color-primary);
}

.modal__content {
    /* Premium dark glass modal */
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--spacing-xl);
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--color-blue);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy open */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal__close:hover {
    color: var(--color-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Glass input */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(29, 53, 87, 0.3);
}

.btn--outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* Header: Frosted Glass */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Frosted Red Glass */
    background-color: rgba(230, 57, 70, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    /* White text on Red Header */
}

.nav__list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav__link {
    font-family: var(--font-heading);
    /* Switch to Header font (Oswald) */
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    /* White links on Red Header */
}

.nav__link:hover {
    color: var(--color-primary-hover);
    /* Darker red/blue on hover? Or just opacity? Let's use slight transparency or maybe black? Or just keep white/bold. Let's try opacity. */
    opacity: 0.8;
}

.nav__btn {
    margin-left: 0;
    /* Reset margin as we are using a container now */
    padding: 8px 24px;
    font-size: 0.9rem;
}

.nav__actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-left: var(--spacing-lg);
}

.btn--pay {
    background-color: var(--color-white);
    color: var(--color-blue);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn--pay:hover {
    background-color: #f0f0f0;
    color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 48px;
    height: 48px;
    /* Optimal touch target */
}

/* Hamburger Icon Animation */
.hamburger {
    display: block;
    position: relative;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Animated X when menu is open */
.nav.is-open~.nav-toggle .hamburger {
    background-color: transparent;
}

.nav.is-open~.nav-toggle .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav.is-open~.nav-toggle .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Desktop Fix: Stretch image to fill screen (User request: "Strech out the sides") */
    background-color: #d4d3ce;
    /* Corrected Wall Color */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('assets/hero_bg_code.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
}

/* On Mobile (Portrait), keep cover as it handles verticality better without extreme distortion */
@media (max-width: 768px) {
    .hero__bg-overlay {
        background-size: cover;
        background-position: center top;
    }
}

.hero__content {
    max-width: 800px;
}

.hero__title {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    /* Cinematic Text */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cinematicReveal 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes cinematicReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-md);
    animation: fadeInUp 1.2s ease forwards;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section__title {
    font-size: 2.5rem;
}

.section__subtitle {
    font-family: var(--font-heading);
    /* Oswald font */
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Services */
.services {
    background-color: var(--color-bg-alt);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    /* Glassmorphism Upgrade */
    background: var(--glass-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    /* Subtle border */
    color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    /* Neon Glow Gradient Border */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue));
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* Magnetic Lift */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px var(--glow-red),
        /* Neon Red Glow */
        0 0 40px var(--glow-blue);
    /* Neon Blue Glow mix */
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 15px var(--color-red);
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Lighter border */
    padding-bottom: var(--spacing-sm);
}

.service-card__title {
    font-size: 1.2rem;
    color: var(--color-white);
    /* White Title */
    margin: 0;
}



.service-card__desc {
    color: var(--color-blue);
    /* Blue Description Text */
    font-size: 0.95rem;
    font-family: var(--font-heading);
    /* Oswald font to fit the rest */
    font-weight: 400;
    /* Regular weight for readability */
    letter-spacing: 0.5px;
}

/* About */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact */
.contact {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Section Background */
.contact {
    position: relative;
    background-image: url('assets/contact_bg.png');
    background-size: contain;
    /* Zoom out */
    background-repeat: no-repeat;
    background-color: #000;
    background-position: center;
    /* Centered background */
    padding: var(--spacing-xl) 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Heavy dark overlay for contrast */
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

/* Map positioning */
#map {
    height: 250px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    #map {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 45%;
        /* Take up nearly half width on right */
        max-width: 500px;
        z-index: 3;
        margin-top: 0;
    }
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .contact__container {
        grid-template-columns: 1fr 1fr;
        /* Side by side on desktop */
        align-items: center;
    }
}

.contact__list li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    /* Oswald font */
    letter-spacing: 0.5px;
}

.people-list {
    /* Potential future use */
    font-family: var(--font-heading);
}

.contact__list .icon {
    font-size: 1.2rem;
}

.hours {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    /* Oswald font for hours too */
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, var(--color-bg), #050505);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.social-links {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-links a:hover {
    color: var(--color-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--color-red);
        /* Match header */
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav.is-open {
        display: flex;
        animation: slideInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-lg);
        gap: var(--spacing-sm);
    }

    .nav__item {
        opacity: 0;
        animation: fadeInStagger 0.3s ease-out forwards;
    }

    .nav__item:nth-child(1) {
        animation-delay: 0.05s;
    }

    .nav__item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .nav__item:nth-child(3) {
        animation-delay: 0.15s;
    }

    .nav__item:nth-child(4) {
        animation-delay: 0.2s;
    }

    .nav__item:nth-child(5) {
        animation-delay: 0.25s;
    }

    .nav__link {
        padding: 12px 24px;
        display: block;
        min-height: 48px;
        /* Touch-friendly */
        line-height: 24px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }

    .nav__link:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav__actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .nav__btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
    }

    .hero__title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .about__container {
        grid-template-columns: 1fr;
    }

    /* Optimize service cards for mobile */
    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .service-card {
        padding: var(--spacing-md);
    }

    /* Larger touch targets for all interactive elements */
    .btn,
    .nav__link,
    .service-card,
    input,
    select {
        min-height: 48px;
    }

    /* Container has more breathing room */
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Section spacing optimized */
    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Slide in animation for mobile menu */
@keyframes slideInDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Stagger animation for menu items */
@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.hidden-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.is-open {
    display: flex;
    opacity: 1;
}

.modal__content {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-xl);
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--color-gold);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.is-open .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal__close:hover {
    color: var(--color-gold);
}

.modal__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.modal__subtitle {
    color: var(--color-text-muted);
}

/* Booking Form */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    /* Labels are now Blue */
    font-size: 0.9rem;
    font-weight: 700;
    /* Bold labels */
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn--block {
    width: 100%;
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Toast Notification */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    display: flex;
    align-items: center;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(8px);
    /* Glass toast */
    color: var(--color-white);
    padding: 16px 24px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--color-primary);
    min-width: 300px;
    transform: translateX(100%);
    animation: slideIn 0.3s ease forwards;
}

.toast.toast--success {
    border-left-color: #2ecc71;
    /* Green */
}

.toast.toast--error {
    border-left-color: #e74c3c;
    /* Red */
}

.toast__icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.toast__message {
    font-family: var(--font-body);
    font-size: 0.95rem;
}

@keyframes slideIn {
    from {
        transform: translateX(105%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(105%);
        opacity: 0;
    }
}

/* Mobile Sticky Booking Button (FAB) */
.mobile-booking-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(29, 53, 87, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    cursor: pointer;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fabBounceIn 0.5s ease-out;
}

.mobile-booking-fab:active {
    transform: scale(0.9);
}

.mobile-booking-fab:hover {
    box-shadow: 0 6px 16px rgba(29, 53, 87, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

@keyframes fabBounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Show FAB on mobile only */
@media (max-width: 768px) {
    .mobile-booking-fab {
        display: flex;
    }
}