/* ============================================
   PocketCRM Front Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Light Mode Colors */
    --primary-color: #F59E0B;
    --secondary-gray: #E5E7EB;
    --success-green: #16A34A;
    --neutral-slate: #64748B;
    --warning-amber: #F59E0B;
    --destructive-red: #DC2626;
    --toggle-unselected-bg: #F1F5F9;
    --toggle-unselected-text: #475569;
    --bg-light: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #374151;
    --card-bg: #FFFFFF;
    --border-color: #E5E7EB;
}

[data-bs-theme="dark"] {
    /* Dark Mode Colors */
    --primary-color: #F59E0B;
    --success-green: #22C55E;
    --secondary-gray: #94A3B8;
    --bg-dark: #0F172A;
    --text-light: #F8FAFC;
    --bg-light: #1E293B;
    --text-dark: #F1F5F9;
    --text-gray: #CBD5E1;
    --card-bg: #1E293B;
    --border-color: #334155;
}

/* Base Styles */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-bs-theme="dark"] body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Modern Button Styles */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--warning-amber) 0%, #D97706 100%);
    color: #1F2937;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3), 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: #1F2937;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4), 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--warning-amber);
    color: var(--warning-amber);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: linear-gradient(135deg, var(--warning-amber) 0%, #D97706 100%);
    border-color: var(--warning-amber);
    color: #1F2937;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4), 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn-outline-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

[data-bs-theme="dark"] .btn-outline-primary {
    border-color: var(--warning-amber);
    color: var(--warning-amber);
}

[data-bs-theme="dark"] .btn-outline-primary:hover,
[data-bs-theme="dark"] .btn-outline-primary:focus {
    background: linear-gradient(135deg, var(--warning-amber) 0%, #D97706 100%);
    border-color: var(--warning-amber);
    color: #1F2937;
}

.btn-secondary {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: var(--text-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    color: var(--text-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-color: rgba(148, 163, 184, 0.3);
}

[data-bs-theme="dark"] .btn-secondary {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: var(--text-light);
    border-color: rgba(148, 163, 184, 0.3);
}

[data-bs-theme="dark"] .btn-secondary:hover,
[data-bs-theme="dark"] .btn-secondary:focus {
    background: linear-gradient(135deg, #475569 0%, #64748B 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-green) 0%, #15803D 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-success:hover,
.btn-success:focus {
    background: linear-gradient(135deg, #15803D 0%, #166534 100%);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-neutral {
    background: linear-gradient(135deg, var(--neutral-slate) 0%, #475569 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
}

.btn-neutral:hover,
.btn-neutral:focus {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-amber) 0%, #D97706 100%);
    color: #1F2937;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover,
.btn-warning:focus {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: #1F2937;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, var(--destructive-red) 0%, #B91C1C 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-danger:hover,
.btn-danger:focus {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

/* Toggle Chips */
.toggle-chip {
    background-color: var(--toggle-unselected-bg);
    color: var(--toggle-unselected-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.toggle-chip.active {
    background-color: var(--warning-amber);
    color: #1F2937;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

[data-bs-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.8);
    border-bottom-color: rgba(148, 163, 184, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--warning-amber) !important;
    transform: scale(1.05);
}

.navbar-toggler {
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
    border-color: var(--warning-amber);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 250, 252, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0.25rem 0;
}

.nav-link:hover {
    color: var(--warning-amber) !important;
    background-color: rgba(245, 158, 11, 0.1);
}

[data-bs-theme="dark"] .nav-link {
    color: var(--text-light) !important;
}

[data-bs-theme="dark"] .nav-link:hover {
    background-color: rgba(245, 158, 11, 0.15);
}

.btn-nav-register {
    background-color: var(--warning-amber) !important;
    color: #1F2937 !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-nav-register:hover,
.btn-nav-register:focus {
    background-color: #D97706 !important;
    color: #1F2937 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-nav-register:active {
    transform: translateY(0);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

[data-bs-theme="dark"] .dropdown-menu {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(148, 163, 184, 0.2);
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-amber);
}

[data-bs-theme="dark"] .dropdown-item {
    color: var(--text-light);
}

[data-bs-theme="dark"] .dropdown-item:hover {
    background-color: rgba(245, 158, 11, 0.15);
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem !important;
        display: flex;
        align-items: center;
    }
    
    .btn-nav-register {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(148, 163, 184, 0.2);
    }
    
    .theme-toggle {
        width: auto !important;
        margin: 0.5rem auto 0;
        padding: 0.5rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Cards */
.card {
    background-color: var(--bg-light);
    border-color: var(--secondary-gray);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-bs-theme="dark"] .card {
    background-color: #1E293B;
    border-color: #334155;
}

/* Modern Form Controls */
.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: var(--warning-amber);
    color: var(--text-dark);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15), 0 4px 20px rgba(245, 158, 11, 0.2);
    outline: none;
    transform: translateY(-1px);
}

.form-control::placeholder,
.form-select::placeholder {
    color: #94A3B8;
    opacity: 0.7;
    font-weight: 400;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: rgba(148, 163, 184, 0.3);
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .form-control:hover,
[data-bs-theme="dark"] .form-select:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    background-color: rgba(30, 41, 59, 0.95);
    border-color: var(--warning-amber);
    color: var(--text-light);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2), 0 4px 20px rgba(245, 158, 11, 0.25);
}

[data-bs-theme="dark"] .form-control::placeholder,
[data-bs-theme="dark"] .form-select::placeholder {
    color: #94A3B8;
    opacity: 0.6;
}

/* Input Group Styling */
.input-group .form-control,
.input-group .form-select {
    border-radius: 12px;
}

.input-group-text {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .input-group-text {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(148, 163, 184, 0.3);
    color: var(--text-light);
}

.input-group:focus-within .input-group-text {
    border-color: var(--warning-amber);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
}

/* Form Labels */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

[data-bs-theme="dark"] .form-label {
    color: var(--text-light);
}

/* Form Validation States */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--destructive-red);
    background-color: rgba(220, 38, 38, 0.05);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15), 0 4px 20px rgba(220, 38, 38, 0.2);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--success-green);
    background-color: rgba(22, 163, 74, 0.05);
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15), 0 4px 20px rgba(22, 163, 74, 0.2);
}

/* Textarea */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Location Tracking Section */
.location-tracking-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

[data-bs-theme="dark"] .location-tracking-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.location-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--warning-amber);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.location-visual {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color, rgba(148, 163, 184, 0.2));
}

[data-bs-theme="dark"] .location-visual {
    background-color: var(--bg-dark);
    border-color: rgba(148, 163, 184, 0.1);
}

.stat-number {
    font-size: 2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.location-insight {
    background-color: rgba(37, 99, 235, 0.05);
    border-left: 3px solid var(--primary-color);
}

[data-bs-theme="dark"] .location-insight {
    background-color: rgba(37, 99, 235, 0.1);
}

/* Checkbox and Radio */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(148, 163, 184, 0.4);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--warning-amber);
    border-color: var(--warning-amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.form-check-input:focus {
    border-color: var(--warning-amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

[data-bs-theme="dark"] .form-check-label {
    color: var(--text-light);
}

/* Google Login Button */
.btn-google {
    background: #FFFFFF;
    color: #3c4043;
    border: 2px solid #dadce0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.btn-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.btn-google:hover,
.btn-google:focus {
    background: #F8F9FA;
    color: #3c4043;
    border-color: #c0c4c8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-google svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

[data-bs-theme="dark"] .btn-google {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 2px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .btn-google:hover,
[data-bs-theme="dark"] .btn-google:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Divider */
.divider-wrapper {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
}

.divider-text {
    padding: 0 1rem;
    color: #94A3B8;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-bs-theme="dark"] .divider-text {
    color: #64748B;
}

/* Language Dropdown */
.language-toggle {
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
}

.language-toggle:hover {
    background-color: rgba(245, 158, 11, 0.1);
}

.language-menu {
    min-width: 180px;
}

.language-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.language-item:hover {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-amber);
}

.language-item.active {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--warning-amber);
    font-weight: 600;
}

.language-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.language-item i {
    margin-left: auto;
    font-size: 1rem;
}

[data-bs-theme="dark"] .language-item:hover {
    background-color: rgba(245, 158, 11, 0.15);
}

[data-bs-theme="dark"] .language-item.active {
    background-color: rgba(245, 158, 11, 0.2);
}

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: transparent;
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
}

.theme-toggle:hover {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--warning-amber);
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
    border-color: var(--warning-amber);
}

.theme-toggle:active {
    transform: scale(0.95);
}

[data-bs-theme="dark"] .theme-toggle {
    color: var(--text-light);
}

[data-bs-theme="dark"] .theme-toggle:hover {
    background-color: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--warning-amber);
}

.theme-toggle i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

/* Footer - Glassmorphism */
.footer-modern {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-modern > .container {
    position: relative;
    z-index: 1;
}

[data-bs-theme="light"] .footer-modern {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top-color: rgba(148, 163, 184, 0.3);
}

[data-bs-theme="light"] .footer-modern::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.footer-brand {
    color: #FFFFFF;
}

[data-bs-theme="light"] .footer-brand {
    color: #1E293B;
}

.footer-heading {
    color: #FFFFFF;
}

[data-bs-theme="light"] .footer-heading {
    color: #1E293B;
}

.footer-text {
    color: #94A3B8;
}

[data-bs-theme="light"] .footer-text {
    color: #64748B;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--warning-amber);
}

[data-bs-theme="light"] .footer-link {
    color: #64748B;
}

[data-bs-theme="light"] .footer-link:hover {
    color: var(--warning-amber);
}

/* Footer Social Media Buttons */
.footer-social-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--warning-amber);
    color: #1F2937;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.footer-social-btn:hover {
    background-color: #D97706;
    color: #1F2937;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.footer-social-btn:active {
    transform: translateY(-1px) scale(1.05);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-modern .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-modern .row > div:last-child {
        margin-bottom: 0;
    }
    
    .footer-social-wrapper {
        justify-content: flex-start;
    }
}

.footer-divider {
    border-color: rgba(148, 163, 184, 0.1);
}

[data-bs-theme="light"] .footer-divider {
    border-color: rgba(148, 163, 184, 0.2);
}

.footer-copyright {
    color: #64748B;
}

[data-bs-theme="light"] .footer-copyright {
    color: #64748B;
}

/* ============================================
   Home Page Styles
   ============================================ */

/* Falling Objects Animation */
@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.falling-object {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: fall linear infinite;
    pointer-events: none;
}

.falling-object:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.falling-object:nth-child(2) { left: 20%; animation-duration: 10s; animation-delay: 2s; }
.falling-object:nth-child(3) { left: 30%; animation-duration: 12s; animation-delay: 1s; }
.falling-object:nth-child(4) { left: 40%; animation-duration: 9s; animation-delay: 3s; }
.falling-object:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 0.5s; }
.falling-object:nth-child(6) { left: 60%; animation-duration: 13s; animation-delay: 2.5s; }
.falling-object:nth-child(7) { left: 70%; animation-duration: 8s; animation-delay: 1.5s; }
.falling-object:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 3.5s; }
.falling-object:nth-child(9) { left: 90%; animation-duration: 9s; animation-delay: 0.8s; }

/* Hero Section - Glassmorphism */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

[data-bs-theme="dark"] .hero-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

[data-bs-theme="dark"] .hero-section::before {
    background: rgba(15, 23, 42, 0.3);
}

.hero-title {
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .hero-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.3) !important;
    border-color: rgba(245, 158, 11, 0.4);
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--warning-amber);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.hero-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card:hover .hero-image {
    transform: scale(1.1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.6) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.4s ease;
    border-radius: 24px;
}

.hero-card:hover .hero-image-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
}

.hero-image-content {
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

.hero-overlay-icon {
    font-size: 3rem;
    color: var(--warning-amber);
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
    transition: all 0.4s ease;
}

.hero-card:hover .hero-overlay-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.6));
}

[data-bs-theme="dark"] .hero-image-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);
}

[data-bs-theme="dark"] .hero-card:hover .hero-image-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 23, 42, 0.7) 100%);
}

/* Problem Section - Glassmorphism */
.problem-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

[data-bs-theme="dark"] .problem-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

/* Story Section */
.story-section {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

[data-bs-theme="dark"] .story-section {
    background: var(--bg-dark);
}

.story-icon {
    color: var(--warning-amber);
    transition: transform 0.3s ease;
}

.story-content {
    color: var(--text-dark);
}

[data-bs-theme="dark"] .story-content {
    color: var(--text-light);
}

.story-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-left: 4px solid var(--warning-amber);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .story-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.story-visual {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-bs-theme="dark"] .story-visual {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.timeline-item {
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, var(--warning-amber) 0%, transparent 100%);
    opacity: 0.3;
}

[data-bs-theme="dark"] .timeline-item:not(:last-child)::after {
    opacity: 0.2;
}

.problem-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-bs-theme="dark"] .problem-card {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(148, 163, 184, 0.2);
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.3);
}

[data-bs-theme="dark"] .problem-card:hover {
    background: rgba(30, 41, 59, 0.8);
}

.problem-icon {
    font-size: 3.5rem;
    color: var(--neutral-slate);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.problem-card:hover .problem-icon {
    color: var(--warning-amber);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.3));
}

/* Features Section - Glassmorphism */
.features-section {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

[data-bs-theme="dark"] .features-section {
    background: rgba(15, 23, 42, 0.5);
}

.feature-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .feature-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.3) !important;
    border-color: rgba(245, 158, 11, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--warning-amber);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
}

.feature-icon-green {
    color: var(--success-green);
    filter: drop-shadow(0 4px 8px rgba(22, 163, 74, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.4));
}

.feature-card:hover .feature-icon-green {
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.4));
}

/* Audience Section - Glassmorphism */
.audience-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

[data-bs-theme="dark"] .audience-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.audience-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .audience-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.audience-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(245, 158, 11, 0.3) !important;
    border-color: rgba(245, 158, 11, 0.4);
}

.audience-icon {
    font-size: 3.5rem;
    color: var(--warning-amber);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
}

.audience-icon-secondary {
    color: var(--neutral-slate);
    filter: drop-shadow(0 4px 8px rgba(100, 116, 139, 0.2));
}

.audience-card:hover .audience-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.4));
}

.audience-card:hover .audience-icon-secondary {
    transform: scale(1.15) rotate(-5deg);
    color: var(--warning-amber);
    filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.4));
}

.audience-text {
    color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-light);
}

.step-wrapper {
    display: flex;
    justify-content: center;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warning-amber) 0%, #D97706 100%);
    color: #1F2937;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.step-wrapper:hover .step-number {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.5);
}

.demo-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .demo-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.demo-button {
    background-color: var(--toggle-unselected-bg);
    color: var(--toggle-unselected-text);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-button:hover {
    background-color: var(--warning-amber);
    color: #1F2937;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Learn Section - Glassmorphism */
.learn-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

[data-bs-theme="dark"] .learn-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

/* Feedback Section */
.feedback-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

[data-bs-theme="dark"] .feedback-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.feedback-icon {
    color: var(--warning-amber);
    transition: transform 0.3s ease;
}

.feedback-content {
    color: var(--text-dark);
}

[data-bs-theme="dark"] .feedback-content {
    color: var(--text-light);
}

.feedback-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-bs-theme="dark"] .feedback-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.feedback-demo {
    background-color: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .feedback-demo {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: rgba(148, 163, 184, 0.1);
}

.insight-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-bs-theme="dark"] .insight-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.insight-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25) !important;
    border-color: rgba(245, 158, 11, 0.3);
}

.insight-icon {
    font-size: 2.5rem;
    color: var(--warning-amber);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
}

.insight-icon-green {
    color: var(--success-green);
    filter: drop-shadow(0 4px 8px rgba(22, 163, 74, 0.2));
}

.insight-card:hover .insight-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.4));
}

.insight-card:hover .insight-icon-green {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.4));
}

/* Trust Section - Glassmorphism */
.trust-section {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

[data-bs-theme="dark"] .trust-section {
    background: rgba(15, 23, 42, 0.5);
}

.trust-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .trust-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--warning-amber);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
    cursor: pointer;
}

.trust-icon:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.4));
}

/* CTA Section - Glassmorphism */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(226, 232, 240, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

[data-bs-theme="dark"] .cta-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.cta-button {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, var(--warning-amber) 0%, #D97706 100%);
    border: none;
    color: #1F2937;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.5);
}

/* Section Titles */
.section-title {
    color: var(--text-dark);
}

/* Utilities */
.min-vh-50 {
    min-height: 50vh;
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-radius: 20px;
    margin-top: 2rem;
}

.contact-story {
    padding: 2rem 0;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-left: 4px solid var(--warning-amber);
}

.contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.contact-image-wrapper:hover .contact-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    color: var(--warning-amber);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-radius: 10px;
    color: var(--warning-amber);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

[data-bs-theme="dark"] .contact-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

[data-bs-theme="dark"] .story-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
}

[data-bs-theme="dark"] .contact-info-item {
    border-bottom-color: rgba(148, 163, 184, 0.1);
}

/* Registration Form Styles */
.account-type-btn {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(148, 163, 184, 0.3);
    transition: all 0.3s ease;
}

.account-type-btn:hover {
    border-color: var(--warning-amber);
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-amber);
}

.btn-check:checked + .account-type-btn {
    background-color: var(--warning-amber);
    border-color: var(--warning-amber);
    color: #1F2937;
    font-weight: 600;
}

[data-bs-theme="dark"] .btn-check:checked + .account-type-btn {
    color: #1F2937;
}

/* ============================================
   Vision Section Styles
   ============================================ */

.vision-section {
    position: relative;
}

.vision-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.vision-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-radius: 15px;
    color: #2563EB;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vision-icon-secondary {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: #16A34A;
}

.process-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.example-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.example-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-radius: 12px;
    color: #2563EB;
    font-size: 1.5rem;
}

.example-icon-secondary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--warning-amber);
}

.clarity-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clarity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.clarity-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-radius: 12px;
    color: #2563EB;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.clarity-icon-secondary {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: #16A34A;
}

.comparison-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.comparison-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.vision-comparison {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-comparison:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Dark mode adjustments for vision section */
[data-bs-theme="dark"] .vision-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
}

[data-bs-theme="dark"] .vision-card,
[data-bs-theme="dark"] .example-card,
[data-bs-theme="dark"] .clarity-card {
    background-color: var(--bg-light);
    border-color: rgba(148, 163, 184, 0.1);
}

[data-bs-theme="dark"] .vision-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
}

[data-bs-theme="dark"] .vision-icon-secondary {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2) 0%, rgba(22, 163, 74, 0.3) 100%);
}

[data-bs-theme="dark"] .example-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
}

[data-bs-theme="dark"] .example-icon-secondary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
}

[data-bs-theme="dark"] .clarity-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
}

[data-bs-theme="dark"] .clarity-icon-secondary {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2) 0%, rgba(22, 163, 74, 0.3) 100%);
}

/* ============================================
   Phone Mockup Styles for Quick Access PWA
   ============================================ */
.phone-mockup-wrapper {
    position: relative;
    padding: 2rem;
}

.phone-mockup {
    max-width: 320px;
    position: relative;
}

.phone-frame {
    background: #1F2937;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(255, 255, 255, 0.1),
                inset 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: #1F2937;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.phone-header {
    position: relative;
    z-index: 5;
}

.phone-content {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phone-mockup {
        max-width: 280px;
    }
    
    .phone-mockup-wrapper {
        padding: 1rem;
    }
}

/* Animation for phone mockup */
@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.phone-mockup-wrapper:hover .phone-mockup {
    animation: phoneFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}
