
.floating-cta-panel {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    --floating-theme: var(--bs-theme, var(--bs-primary));
    --floating-theme-rgb: var(--bs-theme-rgb, var(--bs-primary-rgb));
    --floating-theme-contrast: var(--bs-theme-color, #ffffff);
    --floating-theme-contrast-rgb: var(--bs-theme-color-rgb, 255, 255, 255);
    --floating-surface: rgba(var(--bs-body-bg-rgb, 255, 255, 255), 0.9);
    --floating-border: rgba(var(--floating-theme-rgb), 0.2);
    --floating-shadow: 0 18px 36px rgba(var(--floating-theme-rgb), 0.16);
}

body.has-floating-cta-panel {
    padding-left: 92px;
}

.landing-header {
    background-color: rgba(var(--bs-body-bg-rgb, 255, 255, 255), 0.9);
    backdrop-filter: blur(12px);
    color: var(--bs-body-color);
    border-bottom: 1px solid var(--bs-border-color-translucent, var(--bs-border-color));
    box-shadow: 0 6px 18px rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.06);
}

.landing-header .navbar-brand,
.landing-header .navbar-brand span,
.landing-header .nav-link,
.landing-header .navbar-toggler {
    color: var(--bs-body-color);
}

.landing-header .nav-link:hover,
.landing-header .nav-link:focus {
    color: var(--bs-theme, var(--bs-primary));
}

.landing-header .navbar-toggler span {
    background-color: currentColor;
}

.landing-strip {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-color: var(--bs-border-color-translucent, var(--bs-border-color));
}

.landing-section-muted {
    background-color: rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.03);
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .landing-section-muted {
    background-color: rgba(var(--bs-body-color-rgb, 255, 255, 255), 0.06);
}

.landing-card {
    background-color: var(--bs-card-bg, var(--bs-body-bg));
    color: var(--bs-body-color);
    border: 1px solid var(--bs-border-color-translucent, var(--bs-border-color));
    box-shadow: 0 12px 30px rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.08);
}

[data-bs-theme="dark"] .landing-card {
    box-shadow: 0 12px 30px rgba(var(--bs-body-color-rgb, 255, 255, 255), 0.08);
}

.landing-soft-panel {
    background-color: rgba(var(--bs-body-bg-rgb, 255, 255, 255), 0.6);
    border: 1px solid var(--bs-border-color-translucent, var(--bs-border-color));
    color: var(--bs-body-color);
    box-shadow: 0 10px 24px rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.06);
}

[data-bs-theme="dark"] .landing-soft-panel {
    background-color: rgba(var(--bs-body-bg-rgb, 15, 23, 42), 0.78);
    box-shadow: 0 10px 24px rgba(var(--bs-body-color-rgb, 255, 255, 255), 0.06);
}

@media (max-width: 991.98px) {
    body.has-floating-cta-panel {
        padding-left: 64px;
    }
}

@media (max-width: 575.98px) {
    body.has-floating-cta-panel {
        padding-left: 0;
    }
}

.floating-panel-toggle {
    box-shadow: 0 10px 26px rgba(var(--floating-theme-rgb), 0.22);
}

.landing-auth-btn {
    --landing-theme: var(--bs-theme, var(--bs-primary));
    --landing-theme-rgb: var(--bs-theme-rgb, var(--bs-primary-rgb));
    --landing-theme-contrast: var(--bs-theme-color, #ffffff);
    --landing-theme-contrast-rgb: var(--bs-theme-color-rgb, 255, 255, 255);
    --landing-theme-shadow: 0 12px 28px rgba(var(--landing-theme-rgb), 0.28);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-auth-btn.btn-theme {
    color: var(--landing-theme-contrast);
    background: linear-gradient(135deg, rgba(var(--landing-theme-rgb), 0.96), rgba(var(--landing-theme-rgb), 0.82));
    border-color: rgba(var(--landing-theme-rgb), 0.35);
    box-shadow: var(--landing-theme-shadow);
}

.landing-auth-btn.btn-theme:hover {
    color: var(--landing-theme-contrast);
    box-shadow: 0 14px 32px rgba(var(--landing-theme-rgb), 0.36);
    transform: translateY(-1px);
}

.landing-auth-btn.btn-outline-theme {
    color: var(--landing-theme);
    border-color: rgba(var(--landing-theme-rgb), 0.45);
    background-color: rgba(var(--landing-theme-rgb), 0.04);
    box-shadow: var(--landing-theme-shadow);
}

.landing-auth-btn.btn-outline-theme:hover {
    color: var(--landing-theme);
    background-color: rgba(var(--landing-theme-rgb), 0.08);
    border-color: rgba(var(--landing-theme-rgb), 0.55);
    transform: translateY(-1px);
}

.landing-auth-btn:focus-visible {
    outline: 2px solid rgba(var(--landing-theme-rgb), 0.7);
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(var(--landing-theme-rgb), 0.2), var(--landing-theme-shadow);
}

.floating-cta-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    border-radius: 18px;
    padding: 0;
    background: var(--floating-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--floating-border);
    box-shadow: var(--floating-shadow);
    max-width: 260px;
    transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 52px;
    height: 52px;
    padding: 0 16px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(var(--floating-theme-rgb), 0.35);
    box-shadow: 0 12px 28px rgba(var(--floating-theme-rgb), 0.35);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, width 0.2s ease-in-out, padding 0.2s ease-in-out;
    color: var(--floating-theme-contrast);
    background: linear-gradient(145deg, rgba(var(--floating-theme-rgb), 0.92), rgba(var(--floating-theme-rgb), 0.86));
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(var(--floating-theme-rgb), 0.4);
    color: var(--floating-theme-contrast);
}


.floating-cta-primary {
    background: linear-gradient(140deg, rgba(var(--floating-theme-rgb), 0.98), rgba(var(--floating-theme-rgb), 0.85));
}


.floating-cta-secondary {
    background: rgba(var(--floating-theme-rgb), 0.08);
    color: var(--floating-theme);
    border-color: rgba(var(--floating-theme-rgb), 0.25);
    box-shadow: 0 10px 26px rgba(var(--floating-theme-rgb), 0.2);
}

.floating-cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
    line-height: 1;
}

.floating-cta-panel:not(.expanded) .floating-cta-container {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.floating-cta-panel:not(.expanded) .floating-cta {
    width: 52px;
    padding: 0;
    gap: 0;
}

.floating-cta:focus-visible {
    outline: 2px solid rgba(var(--floating-theme-rgb), 0.8);
    outline-offset: 3px;
}

.floating-cta-label {
    color: var(--bs-body-color);
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.2s ease, max-width 0.2s ease, transform 0.2s ease;
    transform: translateX(-6px);
}

.floating-cta-panel.expanded .floating-cta-container {
    padding: 14px 12px;
    min-width: 220px;
    width: min(260px, calc(100vw - 56px));
}

.floating-cta-panel.expanded .floating-cta {
    width: 100%;
    justify-content: flex-start;
}

.floating-cta-panel.expanded .floating-cta-label {
    opacity: 1;
    max-width: 200px;
    transform: translateX(0);
}

/* Keep the scroll-to-top control clear of the reCAPTCHA badge */
body .btn-scroll-top {
    bottom: 6.5rem;
    right: 1.25rem;
}

@media (max-width: 575.98px) {
    body .btn-scroll-top {
        bottom: 7.5rem;
        right: 1rem;
    }
}

@media (max-width: 575.98px) {
    .floating-cta-panel {
        left: 50%;
        bottom: max(14px, env(safe-area-inset-bottom, 0) + 12px);
        transform: translateX(-50%);
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
        width: calc(100% - 28px);
    }

    .floating-cta-container {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        gap: 10px;
        padding: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .floating-cta {
        width: auto;
        min-width: 48px;
        height: 48px;
        flex: 1 0 auto;
    }

    .floating-cta-panel.expanded {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-cta-panel.expanded .floating-cta-container {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 12px;
    }

    .floating-cta-panel.expanded .floating-cta {
        width: 100%;
        justify-content: flex-start;
    }

    .floating-cta-panel.expanded .floating-cta-label {
        max-width: 100%;
    }
}

body.scroll-lock {
    overflow: hidden;
    touch-action: none;
}

.legal-container {
    margin-top: 60px; /* adjust as needed */
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/landing/Professional3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-welcome {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

    .hero-title em {
        font-style: italic;
        color: #ffffff;
        font-weight: 300;
    }

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

    .btn-hero:hover {
        background-color: #34495e;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-hero:focus,
    .btn-hero:active {
        outline: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
        border: none !important;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-welcome {
        font-size: 11px;
    }
}

/* Navbar Profile Picture Styles */
.menu-img img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* Profile Page Styles */
.profile-header-img {
    position: relative;
}

.profile-picture-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.profile-picture-upload .upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50%;
    cursor: pointer;
}

.profile-picture-upload:hover .upload-overlay {
    opacity: 1;
}/* Sideb
ar Logout Button Styles */
.menu-item form button.menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    color: inherit;
    text-decoration: none;
    border: none;
    background: transparent !important;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-item form button.menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit;
}

.menu-item form button.menu-link .menu-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.menu-item form button.menu-link .menu-text {
    flex: 1;
}/* Landin
g Page Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    /* Mobile auth buttons styling */
    .navbar-nav .nav-item .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Ensure hamburger menu is visible */
.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hamburger menu lines */
.navbar-toggler span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: #6c757d;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.navbar-toggler span:last-child {
    margin-bottom: 0;
}

/* Animate hamburger menu */
.navbar-toggler[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}/* 
Back to Landing Page Button Styles */
.btn-link.text-muted {
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-link.text-muted:hover {
    color: var(--bs-primary) !important;
    text-decoration: none;
}

.btn-link.text-muted i {
    transition: transform 0.2s ease;
}

.btn-link.text-muted:hover i {
    transform: translateX(-2px);
}

/* Account pages styling improvements */
.login-content, .register-content {
    position: relative;
}

/* Ensure proper spacing for back button */
.login-content form, .register-content form {
    padding-top: 0.5rem;
}

.reindeer-log {
    transition: background-color 0.3s ease, border-left-color 0.3s ease, opacity 0.3s ease;
    border-left: 4px solid transparent;
}

.reindeer-log--current {
    border-left-color: var(--bs-primary);
    background-color: rgba(13, 110, 253, 0.08);
}

.reindeer-log--completed {
    opacity: 0.75;
}

.reindeer-log--incoming {
    background-color: rgba(13, 110, 253, 0.18);
}
.payment-provider-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
