/* Main Dashboard Card */
.action-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.brand-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-main);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.brand-logo-text span {
    color: var(--text-muted);
}

/* Premium Segmented Toggle */
.toggle-container {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    display: inline-flex;
    padding: 0.25rem;
    margin-bottom: 2rem;
    width: 100%;
    position: relative;
    border: 1px solid var(--border-color);
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.toggle-btn.active {
    background: var(--bg-surface);
    color: var(--accent-main);
    box-shadow: var(--shadow-sm);
}

.toggle-btn:hover:not(.active) {
    color: var(--primary-main);
}

/* Modern Input Groups */
.address-input-group {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: left;
    transition: var(--transition-fast);
}

.address-input-group:focus-within {
    background: var(--bg-surface);
    border-color: var(--accent-main);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.address-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.address-icon-circle.origin {
    background: var(--accent-light);
    color: var(--accent-hover);
}

.address-icon-circle.origin i::before {
    content: "\f30f";
    /* bi-geo-alt-fill */
}

.address-icon-circle.destination {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.address-icon-circle.destination i::before {
    content: "\f600";
    /* bi-pin-map-fill */
}

.address-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.address-input-clean {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    border: none;
    background: transparent;
    width: 100%;
    padding: 0;
}

.address-input-clean:focus {
    outline: none;
}

.address-input-clean::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}