/* Premium Aesthetics - Help!Go */

/* ========================================================
   1. Typography Overrides
======================================================== */
body {
    font-family: 'Inter', sans-serif !important;
}

/* ========================================================
   2. Navbar Glassmorphism
======================================================== */
.app-header.navbar {
    background: rgba(13, 110, 253, 0.95) !important; /* using Bootstrap primary */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================================
   3. Card Hover Animations
======================================================== */
.card {
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Disable hover effect for specific interactive cards */
.direct-chat:hover, .login-card-body:hover {
    transform: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* ========================================================
   4. Premium Gradients
======================================================== */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
    border: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease !important;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    opacity: 0.95;
}

.bg-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
}

/* Sidebar branding subtle gradient */
.sidebar-brand {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 100%);
}

/* ========================================================
   5. Premium Split-Screen Auth Layout (Reference Style)
======================================================== */
.premium-auth-layout {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}

.auth-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel: White backdrop with abstract curves and branding */
.auth-left-panel {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

.auth-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.auth-wave-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.auth-brand-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-brand-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
}

.brand-logo-svg {
    width: 100%;
    height: 100%;
}

.auth-brand-text .brand-name {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.05em;
}

.auth-brand-text .brand-name span {
    color: #0d6efd;
}

.auth-brand-text .brand-desc {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Right Panel: Curved Corporate Deep Blue Panel */
.auth-right-panel {
    background: linear-gradient(135deg, #103460 0%, #1a4f8b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 2rem;
    border-radius: 40px 0 0 40px;
    z-index: 5;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.auth-form-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    z-index: 10;
}

/* Centralized White Card inside Blue Panel */
.auth-white-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.auth-card-instructions {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

/* Custom Input Styles from Reference Image */
.premium-form-input {
    background-color: #ebf3fe !important;
    border: 1.5px solid transparent !important;
    border-radius: 8px !important;
    height: 48px;
    padding-left: 1.25rem;
    padding-right: 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b !important;
    transition: all 0.2s ease;
}

.premium-form-input:focus {
    background-color: #ffffff !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important;
}

.premium-form-input::placeholder {
    color: #94a3b8 !important;
}

.input-icon-right {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1.15rem;
    pointer-events: none;
    z-index: 5;
}

.premium-file-input {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
}

/* Submit Button & Links */
.premium-submit-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    height: 46px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    transition: all 0.2s ease !important;
}

.premium-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
    opacity: 0.95;
}

.auth-card-link {
    font-size: 0.85rem;
    color: #0d6efd;
    font-weight: 600;
    transition: color 0.15s ease;
}

.auth-card-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Right Panel Footer */
.auth-right-footer p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Watermark */
.auth-right-watermark {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 1;
}

.watermark-svg {
    width: 100%;
    height: 100%;
}

/* Version Info */
.auth-right-version {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    z-index: 10;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-left-panel {
        display: none;
    }

    .auth-right-panel {
        border-radius: 0;
        min-height: 100vh;
        padding: 2rem 1.5rem;
    }

    .auth-form-card-wrapper {
        max-width: 100%;
    }

    .auth-white-card {
        padding: 2.5rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .auth-right-watermark {
        width: 160px;
        height: 160px;
        bottom: -15px;
        right: -15px;
    }
}

